diff options
-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]) |