Switched sense of tests configure flag to really be off by default.

This commit is contained in:
Joel Sherrill
1999-03-08 21:38:16 +00:00
parent b02af64c5e
commit 16b5264d49
2 changed files with 4 additions and 4 deletions

4
configure vendored
View File

@@ -3397,13 +3397,13 @@ fi
# If the tests are enabled, then find all the test suite Makefiles
echo $ac_n "checking if the test suites are enabled? ""... $ac_c" 1>&6
echo "configure:3400: checking if the test suites are enabled? " >&5
tests_enabled=yes
tests_enabled=no
# Check whether --enable-tests or --disable-tests was given.
if test "${enable_tests+set}" = set; then
enableval="$enable_tests"
\
case "${enableval}" in
yes) echo "$ac_t""yes" 1>&6 ;;
yes) echo "$ac_t""yes" 1>&6 ; tests_enabled=yes ;;
no) echo "$ac_t""no" 1>&6 ; tests_enabled=no ;;
*) { echo "configure: error: bad value ${enableval} for tests option" 1>&2; exit 1; } ;;
esac

View File

@@ -429,11 +429,11 @@ fi
# If the tests are enabled, then find all the test suite Makefiles
AC_MSG_CHECKING([if the test suites are enabled? ])
tests_enabled=yes
tests_enabled=no
AC_ARG_ENABLE(tests, \
[ --enable-tests enable tests (default:disabled)], \
[case "${enableval}" in
yes) AC_MSG_RESULT(yes) ;;
yes) AC_MSG_RESULT(yes) ; tests_enabled=yes ;;
no) AC_MSG_RESULT(no) ; tests_enabled=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for tests option) ;;
esac],