summaryrefslogtreecommitdiff
path: root/zlib/configure.in
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>1999-10-04 22:08:42 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>1999-10-04 22:08:42 +0000
commitf8687c38b173cabe0c41e531c675159e8e520b94 (patch)
tree00f151656a21640f1b2f3a7c9a3e578c98f83be7 /zlib/configure.in
parentcad3b359a4b7ed494081971fe05887133570997d (diff)
downloadgcc-f8687c38b173cabe0c41e531c675159e8e520b94.tar.gz
* configure: Rebuilt.
* configure.in: Call AC_EXEEXT after LIB_AC_PROG_CC, but don't actually let AC_EXEEXT run. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29813 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'zlib/configure.in')
-rw-r--r--zlib/configure.in11
1 files changed, 10 insertions, 1 deletions
diff --git a/zlib/configure.in b/zlib/configure.in
index 8e30c1852b9..dcbb2095b06 100644
--- a/zlib/configure.in
+++ b/zlib/configure.in
@@ -5,7 +5,6 @@ AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE(zlib, 1.1.3)
AM_MAINTAINER_MODE
-AC_EXEEXT
AC_CONFIG_AUX_DIR(..)
@@ -43,6 +42,16 @@ AC_ARG_WITH(system-zlib,
[ --with-system-zlib use installed libz])
LIB_AC_PROG_CC
+# We need AC_EXEEXT to keep automake happy in cygnus mode. However,
+# at least currently, we never actually build a program, so we never
+# need to use $(EXEEXT). Moreover, the test for EXEEXT normally
+# fails, because we are probably configuring with a cross compiler
+# which cant create executables. So we include AC_EXEEXT to keep
+# automake happy, but we dont execute it, since we dont care about
+# the result.
+if false; then
+ AC_EXEEXT
+fi
AM_PROG_LIBTOOL
if test -z "$with_target_subdir" || test "$with_target_subdir" = "."; then