From b5e2b48cdde8c9eec7f47f9e02fbb013f7f78ff1 Mon Sep 17 00:00:00 2001 From: jjgarcia Date: Mon, 24 Jan 2005 15:19:58 +0000 Subject: [PATCH] Option --with-cmuformat becomes default --- src/configure | 8 ++++++-- src/configure.in | 6 +++--- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/src/configure b/src/configure index 113b3ba32..c908e1a8c 100755 --- a/src/configure +++ b/src/configure @@ -872,7 +872,7 @@ Optional Packages: --with-gmp=args Configure supplied GMP library with arguments. --with-config-file=f Supply configuration for a cross compiler. --with-oldloop Use the old MIT LOOP macro. ---with-cmuformat Use the FORMAT routine from CMUCL. +--without-cmuformat Use the FORMAT routine from CMUCL. --with-clos-streams Allow user defined stream objects. --with-cxx Build ECL using C++ compiler. --with-x use the X Window System @@ -1501,13 +1501,17 @@ fi; # Check whether --with-cmuformat or --without-cmuformat was given. if test "${with_cmuformat+set}" = set; then withval="$with_cmuformat" + cmuformat="${withval}" +else cmuformat="yes" fi; # Check whether --with-clos-streams or --without-clos-streams was given. if test "${with_clos_streams+set}" = set; then withval="$with_clos_streams" - closstreams="yes" + closstreams="${withval}" +else + closstreams="no" fi; # Check whether --with-cxx or --without-cxx was given. diff --git a/src/configure.in b/src/configure.in index 1398321b9..81cb90f8b 100644 --- a/src/configure.in +++ b/src/configure.in @@ -89,11 +89,11 @@ AC_ARG_WITH(oldloop, [--with-oldloop Use the old MIT LOOP macro.], oldloop="yes") AC_ARG_WITH(cmuformat, - [--with-cmuformat Use the FORMAT routine from CMUCL.], - cmuformat="yes") + [--without-cmuformat Use the FORMAT routine from CMUCL.], + cmuformat="${withval}",cmuformat="yes") AC_ARG_WITH(clos-streams, [--with-clos-streams Allow user defined stream objects.], - closstreams="yes") + closstreams="${withval}",closstreams="no") AC_ARG_WITH(cxx, [--with-cxx Build ECL using C++ compiler.], usecxx="${withval}",usecxx="no")