Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/hdf5/files: hdf5-1.8.13-no-messing-ldpath.patch hdf5-1.8.13-implicits.patch
Date: Wed, 04 Jun 2014 16:06:01
Message-Id: 20140604160556.3DB4F2004F@flycatcher.gentoo.org
1 bicatali 14/06/04 16:05:56
2
3 Added: hdf5-1.8.13-no-messing-ldpath.patch
4 hdf5-1.8.13-implicits.patch
5 Log:
6 Version bump
7
8 (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
9
10 Revision Changes Path
11 1.1 sci-libs/hdf5/files/hdf5-1.8.13-no-messing-ldpath.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/files/hdf5-1.8.13-no-messing-ldpath.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/files/hdf5-1.8.13-no-messing-ldpath.patch?rev=1.1&content-type=text/plain
15
16 Index: hdf5-1.8.13-no-messing-ldpath.patch
17 ===================================================================
18 Prevent build system with messing up LD_LIBRARY_PATH
19 --- a/src/Makefile.am
20 +++ b/src/Makefile.am
21 @@ -125,8 +125,6 @@ settings_DATA=libhdf5.settings
22 # Remove the generated .c file if errors occur unless HDF5_Make_Ignore
23 # is set to ignore the error.
24 H5Tinit.c: H5detect$(EXEEXT)
25 - LD_LIBRARY_PATH="$$LD_LIBRARY_PATH`echo $(LDFLAGS) | \
26 - sed -e 's/-L/:/g' -e 's/ //g'`" \
27 $(RUNSERIAL) ./H5detect$(EXEEXT) > $@ || \
28 (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \
29 ($(RM) $@ ; exit 1)
30 @@ -137,8 +135,6 @@ H5Tinit.c: H5detect$(EXEEXT)
31 # Remove the generated .c file if errors occur unless HDF5_Make_Ignore
32 # is set to ignore the error.
33 H5lib_settings.c: H5make_libsettings$(EXEEXT) libhdf5.settings
34 - LD_LIBRARY_PATH="$$LD_LIBRARY_PATH`echo $(LDFLAGS) | \
35 - sed -e 's/-L/:/g' -e 's/ //g'`" \
36 $(RUNSERIAL) ./H5make_libsettings$(EXEEXT) > $@ || \
37 (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \
38 ($(RM) $@ ; exit 1)
39
40
41
42 1.1 sci-libs/hdf5/files/hdf5-1.8.13-implicits.patch
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/files/hdf5-1.8.13-implicits.patch?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/files/hdf5-1.8.13-implicits.patch?rev=1.1&content-type=text/plain
46
47 Index: hdf5-1.8.13-implicits.patch
48 ===================================================================
49 --- a/test/cache_common.h
50 +++ b/test/cache_common.h
51 @@ -702,5 +702,8 @@ void validate_mdc_config(hid_t file_id,
52 hbool_t compare_init,
53 int test_num);
54
55 +hbool_t resize_configs_are_equal(const H5C_auto_size_ctl_t *a,
56 + const H5C_auto_size_ctl_t *b,
57 + hbool_t compare_init);
58 #endif /* _CACHE_COMMON_H */
59
60 --- a/testpar/t_span_tree.c
61 +++ b/testpar/t_span_tree.c
62 @@ -37,6 +37,9 @@
63 #include "hdf5.h"
64 #include "H5private.h"
65 #include "testphdf5.h"
66 +#define H5S_PACKAGE
67 +#define H5S_TESTING
68 +#include "H5Spkg.h"
69
70
71 static void coll_write_test(int chunk_factor);
72 --- a/configure.ac
73 +++ b/configure.ac
74 @@ -1504,6 +1504,9 @@ case "$host_cpu-$host_vendor-$host_os" in
75 ## however, we do not do this since it breaks the big test on some
76 ## older platforms.
77 AM_CPPFLAGS="-D_BSD_SOURCE $AM_CPPFLAGS"
78 +
79 + ## _GNU_SOURCE is needed for vasprintf
80 + AM_CPPFLAGS="-D_GNU_SOURCE $AM_CPPFLAGS"
81 ;;
82 esac