summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1998-02-03 17:03:13 (GMT)
committerRobb Matzke <matzke@llnl.gov>1998-02-03 17:03:13 (GMT)
commit137bc83f7a8f1f552b53a97d21d89269c844a051 (patch)
tree202ed34e5641d70c810a3f53e09d65b913b25402 /config
parent6cbd6722513cede31afd1826cb842b947ae8b996 (diff)
downloadhdf5-137bc83f7a8f1f552b53a97d21d89269c844a051.zip
hdf5-137bc83f7a8f1f552b53a97d21d89269c844a051.tar.gz
hdf5-137bc83f7a8f1f552b53a97d21d89269c844a051.tar.bz2
[svn-r213] Changes since 19980130
---------------------- ./MANIFEST Added H5Fmpio.c. One way to check that you've properly included new files is to run `./bin/release none', then unpack the resulting tar file somewhere and try to compile it. The tar file will be ./releases/hdf-5.0.0a.tar. ./config/freebsd2.2.1 ./config/linux Added `-ansi' ./acconfig.h Added definitions for PHDF5 and HAVE_PARALLEL. ./configure.in Added minimal support for parallel build. Kim and Albert will have to flesh this out or I can do it if they're more specific about what they need. ./config/commence.in Added default value for $(RUNTEST) ./config/conclude.in `make test' uses value of $(RUNTEST) to run test cases. ./src/Makefile.in Added PARALLEL_SRC for conditional compilation of H5Fmpio.c ./src/H5D.c ./src/H5Dpublic.h Added H5Dget_type() for Elena NOTE: These changes require that configure be rerun. If you're using GNU make it will happen automatically, otherwise do it by hand.
Diffstat (limited to 'config')
-rw-r--r--config/commence.in1
-rw-r--r--config/conclude.in2
-rw-r--r--config/freebsd2.2.12
-rw-r--r--config/linux2
4 files changed, 4 insertions, 3 deletions
diff --git a/config/commence.in b/config/commence.in
index bef6ed8..84cf499 100644
--- a/config/commence.in
+++ b/config/commence.in
@@ -21,6 +21,7 @@ RM=rm -f
INSTALL=@INSTALL@
INSTALL_PROGRAM=@INSTALL_PROGRAM@
INSTALL_DATA=@INSTALL_DATA@
+RUNTEST=@RUNTEST@
# Installation points
ROOT=@ROOT@
diff --git a/config/conclude.in b/config/conclude.in
index 8aebc6c..07b94f3 100644
--- a/config/conclude.in
+++ b/config/conclude.in
@@ -24,7 +24,7 @@ test _test: $(PROGS)
@for test in $(TESTS) dummy; do \
if test $$test != dummy; then \
echo "Testing $$test $(TEST_FLAGS)"; \
- ./$$test $(TEST_FLAGS) || exit 1; \
+ $(RUNTEST) ./$$test $(TEST_FLAGS) || exit 1; \
fi; \
done;
diff --git a/config/freebsd2.2.1 b/config/freebsd2.2.1
index 42c82cf..53aafb8 100644
--- a/config/freebsd2.2.1
+++ b/config/freebsd2.2.1
@@ -45,7 +45,7 @@ debug="-g -DH5AC_DEBUG -DH5B_DEBUG -DH5F_DEBUG -DH5G_DEBUG -UH5O_DEBUG -DH5T_DEB
production="-O3 -DNDEBUG -finline-functions -funroll-loops -malign-double -fomit-frame-pointer"
-default_mode='$debug $warn -DH5F_LOW_DFLT=H5F_LOW_SEC2'
+default_mode='-ansi $debug $warn -DH5F_LOW_DFLT=H5F_LOW_SEC2'
# Don't set CFLAGS if the user already did.
if test -z "$CFLAGS"; then
diff --git a/config/linux b/config/linux
index bdf4143..519c9ab 100644
--- a/config/linux
+++ b/config/linux
@@ -45,7 +45,7 @@ debug="-g -DH5AC_DEBUG -DH5B_DEBUG -DH5F_DEBUG -DH5G_DEBUG -UH5O_DEBUG -DH5T_DEB
production="-O3 -DNDEBUG -finline-functions -funroll-loops -malign-double -fomit-frame-pointer"
-default_mode='$debug $warn -pipe -DH5F_LOW_DFLT=H5F_LOW_SEC2'
+default_mode='-ansi $debug $warn -pipe -DH5F_LOW_DFLT=H5F_LOW_SEC2'
# Don't set CFLAGS if the user already did.
if test -z "$CFLAGS"; then