Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/hdf5/files: hdf5-1.8.9-implicits.patch
Date: Wed, 30 May 2012 16:44:28
Message-Id: 20120530164417.732B02004B@flycatcher.gentoo.org
1 xarthisius 12/05/30 16:44:17
2
3 Added: hdf5-1.8.9-implicits.patch
4 Log:
5 Version bump
6
7 (Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 sci-libs/hdf5/files/hdf5-1.8.9-implicits.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/files/hdf5-1.8.9-implicits.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/files/hdf5-1.8.9-implicits.patch?rev=1.1&content-type=text/plain
14
15 Index: hdf5-1.8.9-implicits.patch
16 ===================================================================
17 --- b/configure.in
18 +++ a/configure.in
19 @@ -1499,6 +1499,9 @@
20 dnl though we do not do this as it breaks the big test on older versions
21 dnl of linux (CentOS 4.6) using newer versions of gcc (4.6.2).
22 AM_CPPFLAGS="-D_BSD_SOURCE $AM_CPPFLAGS"
23 +
24 + dnl _GNU_SOURCE is needed for vasprintf
25 + AM_CPPFLAGS="-D_GNU_SOURCE $AM_CPPFLAGS"
26 ;;
27 esac
28
29 --- a/test/cache_common.h
30 +++ b/test/cache_common.h
31 @@ -702,5 +702,9 @@
32 hbool_t compare_init,
33 int test_num);
34
35 +hbool_t resize_configs_are_equal(const H5C_auto_size_ctl_t *a,
36 + const H5C_auto_size_ctl_t *b,
37 + hbool_t compare_init);
38 +
39 #endif /* _CACHE_COMMON_H */
40
41 --- a/tools/misc/talign.c
42 +++ b/tools/misc/talign.c
43 @@ -23,6 +23,7 @@
44
45 #include "hdf5.h"
46 #include "H5private.h"
47 +#include "h5tools.h"
48
49 const char *fname = "talign.h5";
50 const char *setname = "align";
51 --- a/tools/h5repack/testh5repack_detect_szip.c
52 +++ b/tools/h5repack/testh5repack_detect_szip.c
53 @@ -17,6 +17,7 @@
54 #include "h5repack.h"
55 #include "h5tools.h"
56 #include "h5test.h"
57 +#include "h5tools_utils.h"
58
59
60 /* Name of tool */
61 --- a/hl/src/H5LTanalyze.c
62 +++ b/hl/src/H5LTanalyze.c
63 @@ -49,7 +49,8 @@
64 #define YY_FLEX_MINOR_VERSION 5
65
66 #include <stdio.h>
67 +#include "H5pubconf.h"
68 #ifdef H5_HAVE_UNISTD_H
69 #include <unistd.h>
70 #endif