aboutsummaryrefslogtreecommitdiff
path: root/zlib/configure.in
diff options
context:
space:
mode:
authorTom Tromey <tromey@cygnus.com>1999-10-04 22:08:42 +0000
committerTom Tromey <tromey@gcc.gnu.org>1999-10-04 22:08:42 +0000
commit5d836b57fc71abe4af7288d558b073baecab2157 (patch)
tree00f151656a21640f1b2f3a7c9a3e578c98f83be7 /zlib/configure.in
parent97cf151d27bd7e9810d0aa419a86e446761011e8 (diff)
downloadgcc-5d836b57fc71abe4af7288d558b073baecab2157.zip
gcc-5d836b57fc71abe4af7288d558b073baecab2157.tar.gz
gcc-5d836b57fc71abe4af7288d558b073baecab2157.tar.bz2
configure: Rebuilt.
* configure: Rebuilt. * configure.in: Call AC_EXEEXT after LIB_AC_PROG_CC, but don't actually let AC_EXEEXT run. From-SVN: r29813
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 8e30c18..dcbb209 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