aboutsummaryrefslogtreecommitdiff
path: root/libobjc/configure.in
diff options
context:
space:
mode:
authorGeoffrey Keating <geoffk@redhat.com>2001-02-09 07:14:35 +0000
committerGeoffrey Keating <geoffk@gcc.gnu.org>2001-02-09 07:14:35 +0000
commit7c6b0e92a4beae7f097a5282ff638d74cecc20f1 (patch)
tree5dfb29da22566457637dfd0ba4497c27c5151b76 /libobjc/configure.in
parentc2dd346b48f4bac30f6ec52e41b1759c83a21e3d (diff)
downloadgcc-7c6b0e92a4beae7f097a5282ff638d74cecc20f1.zip
gcc-7c6b0e92a4beae7f097a5282ff638d74cecc20f1.tar.gz
gcc-7c6b0e92a4beae7f097a5282ff638d74cecc20f1.tar.bz2
In libf2c:
* configure.in: Don't run AC_PROG_CC_WORKS, because we're not interested in the result and it might fail. * libF77/configure.in: Likewise. * libI77/configure.in: Likewise. * libU77/configure.in: Likewise. * configure: Regenerated. * libF77/configure: Likewise. * libI77/configure: Likewise. * libU77/configure: Likewise. In libobjc: * configure.in: Don't run AC_PROG_CC_WORKS or AC_EXEEXT, because we're not interested in the result and they might fail. * configure: Regenerated. From-SVN: r39560
Diffstat (limited to 'libobjc/configure.in')
-rw-r--r--libobjc/configure.in16
1 files changed, 16 insertions, 0 deletions
diff --git a/libobjc/configure.in b/libobjc/configure.in
index 9183e52..d568610 100644
--- a/libobjc/configure.in
+++ b/libobjc/configure.in
@@ -65,6 +65,11 @@ then
fi
dnl Checks for programs.
+
+dnl FIXME AC_PROG_CC wants CC to be able to link things, but it may
+dnl not be able to.
+define([AC_PROG_CC_WORKS],[])
+
# For ObjC we'll set CC to point at the built gcc, but this will get it into
# the makefiles
AC_PROG_CC
@@ -78,6 +83,17 @@ else
fi
AC_PROG_INSTALL
+# 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
+
dnl Checks for libraries.
dnl Checks for header files.