From: Ken Brown Date: Sat, 24 Jul 2010 18:44:54 +0000 (-0400) Subject: * configure.in (LINKER, LIB_GCC): Remove cygwin special cases (Bug#6715) X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~49^2~136^2~14 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0c1085c50717c5596d0255bc8ef1c82153e56fd0;p=emacs.git * configure.in (LINKER, LIB_GCC): Remove cygwin special cases (Bug#6715) --- diff --git a/ChangeLog b/ChangeLog index 3fea5befe8d..2746258e0c2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2010-07-24 Ken Brown + + * configure.in (LINKER, LIB_GCC): Remove cygwin special cases (Bug#6715) + 2010-07-24 Juanma Barranquero * .bzrignore, .gitignore: Ignore README.W32 on the root directory. diff --git a/configure.in b/configure.in index 81aaead72e7..a6fde6eca65 100644 --- a/configure.in +++ b/configure.in @@ -3326,9 +3326,7 @@ LINKER= ORDINARY_LINK= case "$opsys" in ## gnu: GNU needs its own crt0. - aix4-2|darwin|gnu|usg5-4|irix6-5|sol2*|unixware) ORDINARY_LINK=yes ;; - - cygwin) LINKER="\$(CC)" ;; + aix4-2|cygwin|darwin|gnu|usg5-4|irix6-5|sol2*|unixware) ORDINARY_LINK=yes ;; ## On post 1.3 releases of NetBSD, gcc -nostdlib also clears the ## library search parth, i.e. it won't search /usr/lib for libc and @@ -3381,8 +3379,7 @@ LIB_GCC= if test "x$GCC" = "xyes" && test "x$ORDINARY_LINK" != "xyes"; then case "$opsys" in - ## cygwin: don't link against static libgcc. - cygwin|freebsd|netbsd|openbsd) LIB_GCC= ;; + freebsd|netbsd|openbsd) LIB_GCC= ;; gnu-*) ## armin76@gentoo.org reported that the lgcc_s flag is necessary to