pkgsrc-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Patch for devel/hdf5-c++



I hit an error with a missing header file while compiling a genomics app.

Looks like H5OcreatProp.h is needed, but is not in the hand-coded list of headers installed.

grep H5OcreatProp.h ~/Pkgsrc/pkg-2016Q1/include/H5*
/home/bacon/Pkgsrc/pkg-2016Q1/include/H5Cpp.h:#include "H5OcreatProp.h"

I attached a patch.

Regards,

    Jason


diff -ruN --exclude CVS --exclude .svn ../../devel/hdf5-c++/Makefile ./Makefile
--- ../../devel/hdf5-c++/Makefile	2015-11-26 05:25:11.000000000 -0600
+++ ./Makefile	2016-09-13 16:11:40.677904453 -0500
@@ -23,7 +23,7 @@
 	  H5DataSpace.h H5DataType.h H5DcreatProp.h H5DxferProp.h H5EnumType.h \
 	  H5Exception.h H5FaccProp.h H5FcreatProp.h H5File.h H5FloatType.h \
 	  H5Group.h H5IdComponent.h H5Include.h H5IntType.h H5Library.h \
-	  H5Location.h \
+	  H5Location.h H5OcreatProp.h \
 	  H5Object.h H5PredType.h H5PropList.h H5StrType.h H5VarLenType.h
 	${INSTALL_DATA} ${WRKSRC}/c++/src/${f} ${DESTDIR}/${PREFIX}/include/
 .endfor
diff -ruN --exclude CVS --exclude .svn ../../devel/hdf5-c++/PLIST ./PLIST
--- ../../devel/hdf5-c++/PLIST	2015-08-24 12:58:34.000000000 -0500
+++ ./PLIST	2016-09-13 16:12:15.360374626 -0500
@@ -26,6 +26,7 @@
 include/H5IntType.h
 include/H5Library.h
 include/H5Location.h
+include/H5OcreatProp.h
 include/H5Object.h
 include/H5PacketTable.h
 include/H5PredType.h


Home | Main Index | Thread Index | Old Index