* ltconfig.in (NM): PATH search was not updated like in

libtool.m4, in last Alexandre Oliva's change to it
	(sysv4*, ncr): pass all library dependencies
	* ltmain.in (dependency_libs, -R): use `dep' instead of `arg' to
 	iterate, otherwise we'd overwrite `arg'
	(convenience, old_libs): if --disable-shared, convenience
	libraries are just old archives, as .lo's are of no use
	* tests/cdemo-static.test: print --disable-shared here
This commit is contained in:
Edouard G. Parmelan 1999-01-13 20:27:17 +00:00 committed by Alexandre Oliva
parent 0862357f6d
commit 2e68bf5aec
4 changed files with 293 additions and 227 deletions

View File

@ -1,7 +1,13 @@
1999-01-13 Edouard G. Parmelan <Edouard.Parmelan@France.NCR.COM>
* ltconfig.in (NM): PATH search was not updated like in
libtool.m4, in last Alexandre Oliva's change to it
(sysv4*, ncr): pass all library dependencies
* ltmain.in (dependency_libs, -R): use `dep' instead of `arg' to
iterate, otherwise we'd overwrite `arg'
(convenience, old_libs): if --disable-shared, convenience
libraries are just old archives, as .lo's are of no use
* tests/cdemo-static.test: print --disable-shared here
1999-01-13 Alexandre Oliva <oliva@dcc.unicamp.br>

View File

@ -1332,7 +1332,7 @@ if test -z "$NM"; then
/* | [A-Za-z]:[/\\]*) ;; # Let the user override the test with a path.
*)
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
for ac_dir in /usr/ucb /usr/ccs/bin $PATH /bin; do
for ac_dir in $PATH /usr/ucb /usr/ccs/bin /bin; do
test -z "$ac_dir" && ac_dir=.
if test -f $ac_dir/nm; then
# Check to see if the nm accepts a BSD-compat flag.
@ -1752,6 +1752,11 @@ sysv4.2uw2* | sysv4.3*)
library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
soname_spec='${libname}${release}.so$major'
shlibpath_var=LD_LIBRARY_PATH
case "$host_vendor" in
ncr)
deplibs_check_method='pass_all'
;;
esac
;;
uts4*)

505
ltmain.in

File diff suppressed because one or more lines are too long

View File

@ -24,7 +24,7 @@ fi
rm -f config.cache
# Configure the demonstration.
echo "= Configuring in ../cdemo (prefix=$prefix) with --disable-static"
echo "= Configuring in ../cdemo (prefix=$prefix) with --disable-shared"
CONFIG_SITE=/dev/null ${CONFIG_SHELL-/bin/sh} $srcdir/../cdemo/configure --srcdir=$srcdir/../cdemo --prefix=$prefix --disable-shared || exit 1
exit 0