Skip to content
Snippets Groups Projects
Commit 5d836b57 authored by Tom Tromey's avatar Tom Tromey Committed by Tom Tromey
Browse files

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
parent 97cf151d
No related branches found
No related tags found
No related merge requests found
1999-10-04 Tom Tromey <tromey@cygnus.com>
* configure: Rebuilt.
* configure.in: Call AC_EXEEXT after LIB_AC_PROG_CC, but don't
actually let AC_EXEEXT run.
1999-09-28 Tom Tromey <tromey@cygnus.com> 1999-09-28 Tom Tromey <tromey@cygnus.com>
* aclocal.m4, configure: Rebuilt. * aclocal.m4, configure: Rebuilt.
......
This diff is collapsed.
...@@ -5,7 +5,6 @@ AC_CANONICAL_SYSTEM ...@@ -5,7 +5,6 @@ AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE(zlib, 1.1.3) AM_INIT_AUTOMAKE(zlib, 1.1.3)
AM_MAINTAINER_MODE AM_MAINTAINER_MODE
AC_EXEEXT
AC_CONFIG_AUX_DIR(..) AC_CONFIG_AUX_DIR(..)
...@@ -43,6 +42,16 @@ AC_ARG_WITH(system-zlib, ...@@ -43,6 +42,16 @@ AC_ARG_WITH(system-zlib,
[ --with-system-zlib use installed libz]) [ --with-system-zlib use installed libz])
LIB_AC_PROG_CC 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 AM_PROG_LIBTOOL
if test -z "$with_target_subdir" || test "$with_target_subdir" = "."; then if test -z "$with_target_subdir" || test "$with_target_subdir" = "."; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment