--with-clx should default to NO

This commit is contained in:
jjgarcia 2005-02-23 13:14:39 +00:00
parent 96d97bcb5d
commit f745fd0db8
2 changed files with 2 additions and 2 deletions

2
src/configure vendored
View file

@ -1507,7 +1507,7 @@ if test "${with_clx+set}" = set; then
withval="$with_clx"
clx="${withval}"
else
clx=yes
clx=no
fi;
# Check whether --with-cxx or --without-cxx was given.

View file

@ -104,7 +104,7 @@ AC_ARG_WITH(clos-streams,
AC_ARG_WITH(clx,
AS_HELP_STRING([--with-clx],
[include CLX library (default is NO)]),
[clx="${withval}"],[clx=yes])
[clx="${withval}"],[clx=no])
AC_ARG_WITH(cxx,
AS_HELP_STRING([--with-cxx],
[build ECL using C++ compiler (default is NO)]),