mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-01-30 14:30:15 +08:00
* ltmain.in (newdlprefiles): Use dlname if it's available and
old_library isn't; use linklib only if dlname is not available.
This commit is contained in:
parent
f4ae56e298
commit
19b19ba7ae
@ -1,5 +1,8 @@
|
|||||||
2000-09-03 Alexandre Oliva <aoliva@redhat.com>
|
2000-09-03 Alexandre Oliva <aoliva@redhat.com>
|
||||||
|
|
||||||
|
* ltmain.in (newdlprefiles): Use dlname if it's available and
|
||||||
|
old_library isn't; use linklib only if dlname is not available.
|
||||||
|
|
||||||
* ltconfig.in (enable_dlopen): Set to no when lt_cv_dlopen is no.
|
* ltconfig.in (enable_dlopen): Set to no when lt_cv_dlopen is no.
|
||||||
|
|
||||||
* libtool.m4: Don't quote CONFIG_SHELL nor ORIGINAL_CONFIG_SHELL.
|
* libtool.m4: Don't quote CONFIG_SHELL nor ORIGINAL_CONFIG_SHELL.
|
||||||
|
@ -1637,6 +1637,9 @@ compiler."
|
|||||||
# are required to link).
|
# are required to link).
|
||||||
if test -n "$old_library"; then
|
if test -n "$old_library"; then
|
||||||
newdlprefiles="$newdlprefiles $dir/$old_library"
|
newdlprefiles="$newdlprefiles $dir/$old_library"
|
||||||
|
# Otherwise, use the dlname, so that lt_dlopen finds it.
|
||||||
|
elif test -n "$dlname"; then
|
||||||
|
newdlprefiles="$newdlprefiles $dir/$dlname"
|
||||||
else
|
else
|
||||||
newdlprefiles="$newdlprefiles $dir/$linklib"
|
newdlprefiles="$newdlprefiles $dir/$linklib"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user