Option --with-cmuformat becomes default

This commit is contained in:
jjgarcia 2005-01-24 15:19:58 +00:00
parent 2b9031e08c
commit b5e2b48cdd
2 changed files with 9 additions and 5 deletions

8
src/configure vendored
View file

@ -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.

View file

@ -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")