diff options
author | Christopher Faylor <me@cgf.cx> | 2000-10-28 05:41:44 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-10-28 05:41:44 +0000 |
commit | 75a57bf04a04e7cacbfc1279aa6c35f3f16775d1 (patch) | |
tree | 550c48ebd0fbf7ff9990077c95c882242dd88b78 /winsup/cygwin/configure.in | |
parent | ce475802f8aa48518553eabd5887bcc439b61a0d (diff) | |
download | newlib-75a57bf04a04e7cacbfc1279aa6c35f3f16775d1.zip newlib-75a57bf04a04e7cacbfc1279aa6c35f3f16775d1.tar.gz newlib-75a57bf04a04e7cacbfc1279aa6c35f3f16775d1.tar.bz2 |
Whitespace cleanup.
* configure.in: Eliminate subdir stuff.
* configure: Regenerate.
* include/getopt.h (option): Make name field 'const'.
Diffstat (limited to 'winsup/cygwin/configure.in')
-rw-r--r-- | winsup/cygwin/configure.in | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/winsup/cygwin/configure.in b/winsup/cygwin/configure.in index fde0ae8..a04d27e 100644 --- a/winsup/cygwin/configure.in +++ b/winsup/cygwin/configure.in @@ -88,7 +88,6 @@ AC_CHECK_TOOL(WINDRES, windres, windres) dnl C_SUBST(WINDRES) AC_ALLOCA -AC_CONFIG_SUBDIRS(utils doc) AC_PROG_MAKE_SET dnl check whether gcc supports __builtin_memset. @@ -97,9 +96,9 @@ AC_LANG_SAVE AC_LANG_CPLUSPLUS AC_TRY_COMPILE([ #include <string.h> -void foo(char *s, int c, size_t n) -{ - __builtin_memset(s, c, n); +void foo(char *s, int c, size_t n) +{ + __builtin_memset(s, c, n); } ], [ ], use_builtin_memset=yes, use_builtin_memset=no) @@ -116,14 +115,14 @@ PTH_ALLOW='' AC_ARG_ENABLE(threadsafe, [ --enable-threadsafe=[runtime] Build a cygwin DLL which is thread safe], [case "${enableval}" in -yes) +yes) dnl default. ;; -runtime) +runtime) mt_safe_val=2 MT_SAFE=yes ;; -no) +no) mt_safe_val=0 MT_SAFE=no PTH_ALLOW=';' @@ -134,12 +133,12 @@ esac AC_ARG_ENABLE(extra-threadsafe-checking, [ --enable-extra-threadsafe-checking Build a cygwin DLL which is thread safe with extra consistency checking], [case "${enableval}" in -yes) +yes) mt_safe_val=1 MT_SAFE=yes AC_DEFINE(_CYG_THREAD_FAILSAFE) ;; -no) +no) dnl Don't do anything here to avoid overriding --enable-threadsafe. ;; esac @@ -188,8 +187,8 @@ dnl fi dnl dnl If newlib is part of build tree, always set EXE_LDFLAGS to point to dnl it; this is important in cases where the installed newlib is perhaps -dnl not compatible. Check and warn for installed newlib only if it's not -dnl part of the build tree. +dnl not compatible. Check and warn for installed newlib only if it's not +dnl part of the build tree. dnl AC_MSG_CHECKING([if newlib is part of the build tree]) @@ -220,10 +219,10 @@ AC_SUBST(EXE_LDFLAGS) case "$target_cpu" in i386|i486|i586|i686) DLL_ENTRY="_dll_entry@12" DEF_DLL_ENTRY="dll_entry@12" - ALLOCA="_alloca" + ALLOCA="_alloca" CONFIG_DIR="i386" ;; - powerpc*) DLL_ENTRY="dll_entry" - DEF_DLL_ENTRY="dll_entry" + powerpc*) DLL_ENTRY="dll_entry" + DEF_DLL_ENTRY="dll_entry" ALLOCA=" __allocate_stack" CONFIG_DIR="ppc" ;; *) AC_MSG_ERROR(Invalid target processor \"$target_cpu\") ;; |