diff options
author | jtb <jtb> | 2002-05-03 20:51:33 +0000 |
---|---|---|
committer | jtb <jtb> | 2002-05-03 20:51:33 +0000 |
commit | 471b2ed5479c00240c94a127f357025fd5b90d63 (patch) | |
tree | c881e542cb8f98fcc1810dd62b5bdd3ef61b43c9 /devel/hdf5/patches | |
parent | 417a30dbeb76dc09c09e94f8d4d9bceb729a4d04 (diff) | |
download | pkgsrc-471b2ed5479c00240c94a127f357025fd5b90d63.tar.gz |
Update to version 1.4.3. Changes include:
* Changed internal error handling macros to reduce code size of library by
about 10%.
* API changes.
* Performance improvements
* ``h5cc'' script which helps compilation of HDF5 programs
* Bug fixes.
Diffstat (limited to 'devel/hdf5/patches')
-rw-r--r-- | devel/hdf5/patches/patch-aa | 20 | ||||
-rw-r--r-- | devel/hdf5/patches/patch-ab | 15 | ||||
-rw-r--r-- | devel/hdf5/patches/patch-ac | 18 |
3 files changed, 43 insertions, 10 deletions
diff --git a/devel/hdf5/patches/patch-aa b/devel/hdf5/patches/patch-aa index 38420e279c3..25dae6f1e63 100644 --- a/devel/hdf5/patches/patch-aa +++ b/devel/hdf5/patches/patch-aa @@ -1,13 +1,13 @@ -$NetBSD: patch-aa,v 1.3 2001/03/04 18:05:24 jtb Exp $ +$NetBSD: patch-aa,v 1.4 2002/05/03 20:51:33 jtb Exp $ ---- configure.orig Sun Mar 4 17:58:18 2001 -+++ configure -@@ -1797,7 +1797,7 @@ - rm maketest +--- tools/misc/Makefile.in.orig Mon Aug 27 19:41:43 2001 ++++ tools/misc/Makefile.in Wed May 1 17:47:54 2002 +@@ -26,7 +26,7 @@ + LIBTOOLS=../lib/libh5tools.la + LIBHDF5=$(top_builddir)/src/libhdf5.la - if test "X$GCC" = "Xyes"; then -- CFLAGS="$CFLAGS -ansi -pedantic -Wchar-subscripts -Wall -W -Wshadow -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline" -+ CFLAGS="$CFLAGS -Wchar-subscripts -Wall -W -Wshadow -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline" - fi +-PUB_PROGS=h5cc h5debug h5import h5repart @PDB2HDF@ ++PUB_PROGS=h5debug h5import h5repart @PDB2HDF@ + PROGS=$(PUB_PROGS) $(TEST_PROGS) - echo $ac_n "checking for production mode""... $ac_c" 1>&6 + ## Source and object files for the library; do not install diff --git a/devel/hdf5/patches/patch-ab b/devel/hdf5/patches/patch-ab new file mode 100644 index 00000000000..d91e1395249 --- /dev/null +++ b/devel/hdf5/patches/patch-ab @@ -0,0 +1,15 @@ +$NetBSD: patch-ab,v 1.1 2002/05/03 20:51:34 jtb Exp $ + +--- tools/misc/h5cc.in.orig Wed May 1 17:41:49 2002 ++++ tools/misc/h5cc.in Wed May 1 17:43:34 2002 +@@ -45,8 +45,8 @@ + SHOW="eval" + CCBASE="@CC@" + CLINKERBASE="@CC@" +-CFLAGS="@CFLAGS@" +-LDFLAGS="@LDFLAGS@" ++CFLAGS="@H5CC_CFLAGS@" ++LDFLAGS="@H5CC_LDFLAGS@" + LIBS="@LIBS@" + + CC="${HDF5_CC:-$CCBASE}" diff --git a/devel/hdf5/patches/patch-ac b/devel/hdf5/patches/patch-ac new file mode 100644 index 00000000000..775a1d28848 --- /dev/null +++ b/devel/hdf5/patches/patch-ac @@ -0,0 +1,18 @@ +$NetBSD: patch-ac,v 1.1 2002/05/03 20:51:34 jtb Exp $ + +--- configure.orig Wed Feb 13 23:26:27 2002 ++++ configure Wed May 1 19:02:18 2002 +@@ -9486,11 +9488,13 @@ + $extrasub + s%@SHELL@%$SHELL%g + s%@CFLAGS@%$CFLAGS%g ++s%@H5CC_CFLAGS@%$H5CC_CFLAGS%g + s%@CPPFLAGS@%$CPPFLAGS%g + s%@CXXFLAGS@%$CXXFLAGS%g + s%@FFLAGS@%$FFLAGS%g + s%@DEFS@%$DEFS%g + s%@LDFLAGS@%$LDFLAGS%g ++s%@H5CC_LDFLAGS@%$H5CC_LDFLAGS%g + s%@LIBS@%$LIBS%g + s%@exec_prefix@%$exec_prefix%g + s%@prefix@%$prefix%g |