diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/commence.in | 1 | ||||
-rw-r--r-- | config/conclude.in | 2 | ||||
-rw-r--r-- | config/freebsd2.2.1 | 2 | ||||
-rw-r--r-- | config/linux | 2 |
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 |