summaryrefslogtreecommitdiff
blob: d1217e83a989743fc609e1ba509e97ab8dfe2a83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
--- b/configure.in
+++ a/configure.in
@@ -1499,6 +1499,9 @@
     dnl though we do not do this as it breaks the big test on older versions
     dnl of linux (CentOS 4.6) using newer versions of gcc (4.6.2).
     AM_CPPFLAGS="-D_BSD_SOURCE $AM_CPPFLAGS"
+
+    dnl _GNU_SOURCE is needed for vasprintf
+    AM_CPPFLAGS="-D_GNU_SOURCE $AM_CPPFLAGS"
     ;;
 esac
 
--- a/test/cache_common.h
+++ b/test/cache_common.h
@@ -702,5 +702,9 @@
                          hbool_t compare_init,
                          int test_num);
 
+hbool_t resize_configs_are_equal(const H5C_auto_size_ctl_t *a,
+                                 const H5C_auto_size_ctl_t *b,
+                                 hbool_t compare_init);
+
 #endif /* _CACHE_COMMON_H */
 
--- a/tools/misc/talign.c
+++ b/tools/misc/talign.c
@@ -23,6 +23,7 @@
 
 #include "hdf5.h"
 #include "H5private.h"
+#include "h5tools.h"
 
 const char *fname = "talign.h5";
 const char *setname = "align";
--- a/tools/h5repack/testh5repack_detect_szip.c
+++ b/tools/h5repack/testh5repack_detect_szip.c
@@ -17,6 +17,7 @@
 #include "h5repack.h"
 #include "h5tools.h"
 #include "h5test.h"
+#include "h5tools_utils.h"
 
 
 /* Name of tool */
--- a/tools/h5jam/h5jam.c
+++ b/tools/h5jam/h5jam.c
@@ -15,6 +15,7 @@
 
 #include "hdf5.h"
 #include "H5private.h"
+#include "h5tools.h"
 #include "h5tools_utils.h"
 
 /* Name of tool */
--- a/tools/h5jam/h5unjam.c
+++ b/tools/h5jam/h5unjam.c
@@ -15,6 +15,7 @@
 
 #include "hdf5.h"
 #include "H5private.h"
+#include "h5tools.h"
 #include "h5tools_utils.h"
 
 /* Name of tool */
--- a/tools/h5copy/h5copygentest.c
+++ b/tools/h5copy/h5copygentest.c
@@ -20,6 +20,7 @@
 #include "hdf5.h"
 #include "H5private.h"
 #include "h5tools.h"
+#include "h5tools_utils.h"
 
 /* Name of tool */
 #define PROGRAMNAME "h5copygentest"
--- a/hl/src/H5LTanalyze.c
+++ b/hl/src/H5LTanalyze.c
@@ -49,7 +49,8 @@
 #define YY_FLEX_MINOR_VERSION 5
 
 #include <stdio.h>
+#include "H5pubconf.h"
 #ifdef H5_HAVE_UNISTD_H
 #include <unistd.h>
 #endif