mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-01-12 14:06:37 +08:00
* tests/depdemo/configure.ac, tests/mdemo/configure.ac,
tests/mdemo2/configure.ac: process 'libtool --features' from Makefile, not configure -- because libtool doesn't exist at configure time.
This commit is contained in:
parent
a351cf7e5e
commit
24ed9eea92
@ -1,5 +1,10 @@
|
||||
2003-11-06 Charles Wilson <cwilson@ece.gatech.edu>
|
||||
|
||||
* tests/depdemo/configure.ac, tests/mdemo/configure.ac,
|
||||
tests/mdemo2/configure.ac: process 'libtool --features'
|
||||
from Makefile, not configure -- because libtool doesn't
|
||||
exist at configure time.
|
||||
|
||||
* ltmain.in (find_executable, check_executable) [cygwin*, mingw*]:
|
||||
binary wrapper used with uninstalled executables breaks when
|
||||
invoked via execlp/execvp (that is, via $PATH). Handle that case.
|
||||
|
@ -49,11 +49,7 @@ AC_SUBST([LIBTOOL_DEPS])
|
||||
## ------------------------------- ##
|
||||
## depdemo specific configuration. ##
|
||||
## ------------------------------- ##
|
||||
if ${CONFIG_SHELL} ./libtool --features | grep "enable static" >/dev/null; then
|
||||
STATIC=-static
|
||||
else
|
||||
STATIC=
|
||||
fi
|
||||
STATIC="\`${CONFIG_SHELL} ./libtool --features | ${SED} -n -e '/enable static/s/^.*\$\$/-static/p'\`"
|
||||
AC_SUBST([STATIC])
|
||||
|
||||
## ---------------------------- ##
|
||||
|
@ -52,11 +52,7 @@ AC_LIBTOOL_DLOPEN
|
||||
AM_PROG_LIBTOOL
|
||||
AC_SUBST(LIBTOOL_DEPS)
|
||||
|
||||
if ${CONFIG_SHELL} ./libtool --features | grep "enable static" >/dev/null; then
|
||||
STATIC=-static
|
||||
else
|
||||
STATIC=
|
||||
fi
|
||||
STATIC="\`${CONFIG_SHELL} ./libtool --features | ${SED} -n -e '/enable static/s/^.*\$\$/-static/p'\`"
|
||||
AC_SUBST([STATIC])
|
||||
|
||||
|
||||
|
@ -47,11 +47,7 @@ AC_LIBTOOL_DLOPEN
|
||||
AM_PROG_LIBTOOL
|
||||
AC_SUBST(LIBTOOL_DEPS)
|
||||
|
||||
if ${CONFIG_SHELL} ./libtool --features | grep "enable static" >/dev/null; then
|
||||
STATIC=-static
|
||||
else
|
||||
STATIC=
|
||||
fi
|
||||
STATIC="\`${CONFIG_SHELL} ./libtool --features | ${SED} -n -e '/enable static/s/^.*\$\$/-static/p'\`"
|
||||
AC_SUBST([STATIC])
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user