diff options
author | Christopher Faylor <me@cgf.cx> | 2003-11-20 19:31:41 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-11-20 19:31:41 +0000 |
commit | 7ee825862056bc6303434203a32f7a936afd13d9 (patch) | |
tree | ce5f115ba6b1c91b44101493fe61b62c8e810487 /winsup/cygwin/configure | |
parent | d26c0ff9554051ee66af04254d6fc56ca7373f7d (diff) | |
download | newlib-7ee825862056bc6303434203a32f7a936afd13d9.zip newlib-7ee825862056bc6303434203a32f7a936afd13d9.tar.gz newlib-7ee825862056bc6303434203a32f7a936afd13d9.tar.bz2 |
* configure.in: Make --use-server the default. Remove powerpc target.
* configure: Regenerate.
Diffstat (limited to 'winsup/cygwin/configure')
-rwxr-xr-x | winsup/cygwin/configure | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/winsup/cygwin/configure b/winsup/cygwin/configure index eb1b688..08d253e 100755 --- a/winsup/cygwin/configure +++ b/winsup/cygwin/configure @@ -1900,22 +1900,23 @@ esac fi +LIBSERVER='$(bupdir)/cygserver/libcygserver.a' # Check whether --enable-server or --disable-server was given. if test "${enable_server+set}" = set; then enableval="$enable_server" case "${enableval}" in -yes) - cat >> confdefs.h <<\EOF -#define USE_SERVER 1 -EOF - - LIBSERVER='$(bupdir)/cygserver/libcygserver.a' ;; -no) LIBSERVER=;; +yes) ;; +no) LIBSERVER=;; esac fi +test -n "$LIBSERVER" && cat >> confdefs.h <<\EOF +#define USE_SERVER 1 +EOF + + MALLOC_OFILES=malloc.o # Check whether --enable-malloc-debugging or --disable-malloc-debugging was given. if test "${enable_malloc_debugging+set}" = set; then @@ -1956,10 +1957,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" ;; *) { echo "configure: error: Invalid target processor \"$target_cpu\"" 1>&2; exit 1; } ;; esac |