aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2013-04-17 20:53:13 +0300
committerArnold D. Robbins <arnold@skeeve.com>2013-04-17 20:53:13 +0300
commit34e5e4114f8d7d9fe421a113698edec05dc95a15 (patch)
tree9fa649282275965c98dca17e10257305a0d668dd
parent2cc5fc89122ca058bccb2f9652b4b4c1f89f7be6 (diff)
downloadegawk-34e5e4114f8d7d9fe421a113698edec05dc95a15.tar.gz
egawk-34e5e4114f8d7d9fe421a113698edec05dc95a15.tar.bz2
egawk-34e5e4114f8d7d9fe421a113698edec05dc95a15.zip
Configuration fix for Cygwin.
-rw-r--r--ChangeLog5
-rwxr-xr-xconfigure9
-rw-r--r--configure.ac11
3 files changed, 5 insertions, 20 deletions
diff --git a/ChangeLog b/ChangeLog
index 458fb56a..a131f4aa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/configure b/configure
index 73edd298..06d89d22 100755
--- a/configure
+++ b/configure
@@ -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])