diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2002-05-29 16:18:33 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2002-05-29 16:18:33 (GMT) |
commit | 1ebc181088af1edd8112a34115b2c3673eb1e5d9 (patch) | |
tree | 3dbe366c51fda84e89996106611634228874faf0 /perform/Makefile.in | |
parent | e69e970a1c71621c39a5f5fa656a185948ed1df8 (diff) | |
download | hdf5-1ebc181088af1edd8112a34115b2c3673eb1e5d9.zip hdf5-1ebc181088af1edd8112a34115b2c3673eb1e5d9.tar.gz hdf5-1ebc181088af1edd8112a34115b2c3673eb1e5d9.tar.bz2 |
[svn-r5472] Purpose:
bug fix
Description:
pio_info_g has been moved to the test/libh5test.a but the
pio_* source files still have the old definition and declaration.
Some compilers hated the duplcation.
Solution:
Replaced the duplication with #include h5test.h and added test/ to
the include search path too.
Platforms tested:
eirene, modi4.
Diffstat (limited to 'perform/Makefile.in')
-rw-r--r-- | perform/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perform/Makefile.in b/perform/Makefile.in index 78d36f2..46e7621 100644 --- a/perform/Makefile.in +++ b/perform/Makefile.in @@ -11,7 +11,8 @@ srcdir=@srcdir@ ## Add include directory to the C preprocessor flags and the hdf5 library ## to the library list. -CPPFLAGS=-I. -I$(srcdir) -I../src -I$(top_srcdir)/src -I$(top_srcdir)/tools/lib @CPPFLAGS@ +CPPFLAGS=-I. -I$(srcdir) -I../src -I$(top_srcdir)/src -I$(top_srcdir)/test \ + -I$(top_srcdir)/tools/lib @CPPFLAGS@ LIBHDF5=../src/libhdf5.la LIBH5TEST=../test/libh5test.la LIBTOOLS=../tools/lib/libh5tools.la |