Build with sbcl-sockets by default

This commit is contained in:
jgarcia 2006-05-30 10:12:08 +00:00
parent 3d6ecf5997
commit 69e7290bf5
3 changed files with 6 additions and 4 deletions

View file

@ -123,6 +123,8 @@ ECL 0.9i
on the additionally checks whether the macroexpanded form is eq to the
original one and complains of the infinite loop that results.
- Configuration flag --with-tcp defaults to true.
* MOP compatibility:
- SLOT-VALUE, SLOT-BOUNDP, etc, together with MOP SLOT*-USING-CLASS generic

4
src/configure vendored
View file

@ -887,7 +887,7 @@ Optional Packages:
--with-__thread Enable __thread thread-local variables (supported by
NPTL-aware glibc and maybe Windows)
--with-cxx build ECL using C++ compiler (default=NO)
--with-tcp include socket interface (default=NO)
--with-tcp include socket interface (default=YES)
--with-clx include CLX library (default=NO)
--with-clos-streams user defined stream objects (default=YES)
--with-cmuformat use CMUCL's FORMAT routine (default=YES)
@ -1533,7 +1533,7 @@ if test "${with_tcp+set}" = set; then
withval="$with_tcp"
else
with_tcp=no
with_tcp=yes
fi;

View file

@ -119,8 +119,8 @@ AC_ARG_WITH(cxx,
AC_ARG_WITH(tcp,
AS_HELP_STRING( [--with-tcp],
[include socket interface (default=NO)]),
[], [with_tcp=no])
[include socket interface (default=YES)]),
[], [with_tcp=yes])
AC_ARG_WITH(clx,
AS_HELP_STRING( [--with-clx],