[svn-r2591] Purpose:

Libtool bug
Description:
	The AR macro wasn't being propagated to the libtool file
	correctly. When libtool was being generated, it wasn't
	recoginizing the AR that was set in the configure script.
Solution:
	export the AR macro after it's set.
Platforms tested:
	Linux
This commit is contained in:
Bill Wendling 2000-09-25 12:35:08 -05:00
parent 2eae09de84
commit ae6fba41fc
2 changed files with 602 additions and 592 deletions

1176
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -160,10 +160,6 @@ fi
dnl Run configure in the subdirectories if specified
AC_CONFIG_SUBDIRS(${config_dirs})
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AM_PROG_LIBTOOL
dnl ----------------------------------------------------------------------
dnl If we should build only static executables
dnl
@ -181,11 +177,23 @@ else
fi
AC_SUBST(LT_STATIC_EXEC)
if test "X$AR" = "X"; then
dnl ----------------------------------------------------------------------
dnl Check which archiving tool to use. This needs to be done before
dnl the AM_PROG_LIBTOOL macro.
dnl
if test -z "$AR"; then
AC_CHECK_PROGS(AR,ar xar,:,$PATH)
fi
AC_SUBST(AR)
dnl Export the AR macro so that it will be placed in the libtool file
dnl correctly.
export AR
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AM_PROG_LIBTOOL
AC_MSG_CHECKING(make)
AC_SUBST_FILE(DEPEND)
if test "`${MAKE-make} --version -f /dev/null 2>/dev/null |\