diff options
author | Christopher Faylor <me@cgf.cx> | 2003-03-29 04:20:45 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-03-29 04:20:45 +0000 |
commit | 46c8214c77bdfcc1b5926ebed7a32810672e5146 (patch) | |
tree | cdb30244091e9de47d4c0c67efcbc6f424426904 /winsup/cygwin/configure.in | |
parent | b7f68d3e9d605cba6151e05c305ccfa827111286 (diff) | |
download | cygnal-46c8214c77bdfcc1b5926ebed7a32810672e5146.tar.gz cygnal-46c8214c77bdfcc1b5926ebed7a32810672e5146.tar.bz2 cygnal-46c8214c77bdfcc1b5926ebed7a32810672e5146.zip |
* Makefile.in: Remove EXE_LDFLAGS. Fix fhandler_CFLAGS typo. Recognize .s
suffix.
* configure.in: Remove EXE_LDFLAGS.
* configure: Regenerate.
Diffstat (limited to 'winsup/cygwin/configure.in')
-rw-r--r-- | winsup/cygwin/configure.in | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/winsup/cygwin/configure.in b/winsup/cygwin/configure.in index 84e86b643..0712b821f 100644 --- a/winsup/cygwin/configure.in +++ b/winsup/cygwin/configure.in @@ -204,38 +204,6 @@ dnl program_transform_name="$program_transform_name -e s,^,$target_alias-," dnl fi 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 - -AC_MSG_CHECKING([if newlib is part of the build tree]) - -EXE_LDFLAGS= -if test -d ../newlib -then - AC_MSG_RESULT(yes) - EXE_LDFLAGS="-B../../newlib/ -B../" -else - AC_MSG_RESULT(no) -fi - AC_SUBST(EXE_LDFLAGS) - -if test x"$EXE_LDFLAGS" = x -then - AC_MSG_CHECKING([if installed newlib needed]) - AC_TRY_LINK(, - [/* main already defined */] - , - AC_MSG_RESULT(no) - , - AC_MSG_RESULT(yes) - AC_MSG_WARN(newlib not found - utility .exe's may not link)) -fi -AC_SUBST(EXE_LDFLAGS) - case "$target_cpu" in i386|i486|i586|i686) DLL_ENTRY="_dll_entry@12" DEF_DLL_ENTRY="dll_entry@12" |