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:41 +0300
committerChristopher Faylor <me@cgf.cx>2003-11-20 22:31:41 +0300
commit7ee825862056bc6303434203a32f7a936afd13d9 (patch)
treece5f115ba6b1c91b44101493fe61b62c8e810487 /winsup/cygwin/configure.in
parentd26c0ff9554051ee66af04254d6fc56ca7373f7d (diff)
* configure.in: Make --use-server the default. Remove powerpc target.
* configure: Regenerate.
Diffstat (limited to 'winsup/cygwin/configure.in')
-rw-r--r--winsup/cygwin/configure.in13
1 files changed, 5 insertions, 8 deletions
diff --git a/winsup/cygwin/configure.in b/winsup/cygwin/configure.in
index d47b4084f..c560301b1 100644
--- a/winsup/cygwin/configure.in
+++ b/winsup/cygwin/configure.in
@@ -135,16 +135,17 @@ no) ;;
esac
])
+LIBSERVER='$(bupdir)/cygserver/libcygserver.a'
AC_ARG_ENABLE(server,
[ --enable-server Build a cygwin DLL which can communicate with cygserver],
[case "${enableval}" in
-yes)
- AC_DEFINE(USE_SERVER)
- LIBSERVER='$(bupdir)/cygserver/libcygserver.a' ;;
-no) LIBSERVER=;;
+yes) ;;
+no) LIBSERVER=;;
esac
])
+test -n "$LIBSERVER" && AC_DEFINE(USE_SERVER)
+
MALLOC_OFILES=malloc.o
AC_ARG_ENABLE(malloc-debugging,
[ --enable-malloc-debugging Build a cygwin DLL with heap sanity checking (this is very slow, use only if you have heap corruption problems)],
@@ -186,10 +187,6 @@ case "$target_cpu" in
DEF_DLL_ENTRY="dll_entry@12"
ALLOCA="_alloca"
CONFIG_DIR="i386" ;;
- powerpc*) DLL_ENTRY="dll_entry"
- DEF_DLL_ENTRY="dll_entry"
- ALLOCA=" __allocate_stack"
- CONFIG_DIR="ppc" ;;
*) AC_MSG_ERROR(Invalid target processor \"$target_cpu\") ;;
esac