diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-04-17 20:53:13 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-04-17 20:53:13 +0300 |
commit | 34e5e4114f8d7d9fe421a113698edec05dc95a15 (patch) | |
tree | 9fa649282275965c98dca17e10257305a0d668dd | |
parent | 2cc5fc89122ca058bccb2f9652b4b4c1f89f7be6 (diff) | |
download | egawk-34e5e4114f8d7d9fe421a113698edec05dc95a15.tar.gz egawk-34e5e4114f8d7d9fe421a113698edec05dc95a15.tar.bz2 egawk-34e5e4114f8d7d9fe421a113698edec05dc95a15.zip |
Configuration fix for Cygwin.
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 9 | ||||
-rw-r--r-- | configure.ac | 11 |
3 files changed, 5 insertions, 20 deletions
@@ -1,3 +1,8 @@ +2013-04-17 Corinna Vinschen <vinschen@redhat.com> + + * configure.ac: Remove special casing for cygwin for libiconv + and libintl. + 2013-04-16 Arnold D. Robbins <arnold@skeeve.com> * bootstrap.sh: Touch gawk.texi too. Update copyright. @@ -5936,15 +5936,6 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $ ac_compiler_gnu=$ac_cv_c_compiler_gnu -case `(uname) 2> /dev/null` in -*CYGWIN*) - with_libiconv_prefix=no - with_libintl_prefix=no - ;; -*) - ;; -esac - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 $as_echo_n "checking whether NLS is requested... " >&6; } diff --git a/configure.ac b/configure.ac index 42b8454b..6899854e 100644 --- a/configure.ac +++ b/configure.ac @@ -129,17 +129,6 @@ dnl Set the programming language for checks. Fortunately, dnl this only needs to be set once, since everything is in C. AC_LANG([C]) -dnl Cygwin doesn't like to get libs with full paths -dnl since that overrides linking against DLLs. -case `(uname) 2> /dev/null` in -*CYGWIN*) - with_libiconv_prefix=no - with_libintl_prefix=no - ;; -*) - ;; -esac - dnl initialize GNU gettext AM_GNU_GETTEXT([external]) AM_GNU_GETTEXT_VERSION([0.18.1]) |