Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-11-20 22:31:52 +0300
committerChristopher Faylor <me@cgf.cx>2003-11-20 22:31:52 +0300
commitd012506e3c078e5972e2d5ba8add97facda58e53 (patch)
treefd30946a78d67cc3a98410a1215a3d4848458f16 /winsup/configure.in
parent7ee825862056bc6303434203a32f7a936afd13d9 (diff)
* configure.in: Make --use-server the default.
* configure: Regenerate.
Diffstat (limited to 'winsup/configure.in')
-rwxr-xr-xwinsup/configure.in7
1 files changed, 3 insertions, 4 deletions
diff --git a/winsup/configure.in b/winsup/configure.in
index 36a3bcfdc..18766ba8c 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
])