diff options
author | Christopher Faylor <me@cgf.cx> | 2003-11-20 19:31:52 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-11-20 19:31:52 +0000 |
commit | d012506e3c078e5972e2d5ba8add97facda58e53 (patch) | |
tree | fd30946a78d67cc3a98410a1215a3d4848458f16 /winsup/configure.in | |
parent | 7ee825862056bc6303434203a32f7a936afd13d9 (diff) | |
download | newlib-d012506e3c078e5972e2d5ba8add97facda58e53.zip newlib-d012506e3c078e5972e2d5ba8add97facda58e53.tar.gz newlib-d012506e3c078e5972e2d5ba8add97facda58e53.tar.bz2 |
* configure.in: Make --use-server the default.
* configure: Regenerate.
Diffstat (limited to 'winsup/configure.in')
-rwxr-xr-x | winsup/configure.in | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/winsup/configure.in b/winsup/configure.in index 36a3bcf..18766ba 100755 --- a/winsup/configure.in +++ b/winsup/configure.in @@ -66,13 +66,12 @@ AC_CANONICAL_SYSTEM LIB_AC_PROG_CC LIB_AC_PROG_CXX -use_cygserver='' +use_cygserver='yes' AC_ARG_ENABLE(server, [ --enable-server Build a cygwin DLL which can communicate with cygserver], [case "${enableval}" in -yes) AC_DEFINE(USE_CYGSERVE) - use_cygserver=1 ;; -no) ;; +yes) ;; +no) use_cygserver=;; esac ]) |