[svn-r17685] Bug fix:

#define H5_USE_16_API
was inserted AFTER #include <hdf5.>, too late was it to take
effect. Instead, it caused a macro redefinition, flagged as an error
by AIX.

Fixed by moving it before the <hdf5.h>.

Tested: Jam.
This commit is contained in:
Albert Cheng 2009-10-20 00:07:04 -05:00
parent a8aa10bd21
commit 4feddbbbcc

View File

@ -117,8 +117,8 @@ EOF
# Generate HDF5 Main Program:
# An HDF5 sample program that calls hdf5 functions.
cat > $hdf5main <<EOF
#include "hdf5.h"
#define H5_USE_16_API
#include "hdf5.h"
#define H5FILE_NAME "tmp.h5"
int
main (void)