From: Alexandre Oliva Date: Thu, 11 Mar 1999 22:46:07 +0000 (+0000) Subject: * ltmain.in (-static, -all-static): set dlopen_self to X-Git-Tag: release-1-2f~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3fefd9d6ce5f1786a8027002ee583264b14e439;p=thirdparty%2Flibtool.git * ltmain.in (-static, -all-static): set dlopen_self to $dlopen_self_static regardless of link_static_flag or pic_flag --- diff --git a/ChangeLog b/ChangeLog index 1c1455b69..dc4149e58 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 1999-03-11 Alexandre Oliva + * ltmain.in (-static, -all-static): set dlopen_self to + $dlopen_self_static regardless of link_static_flag or pic_flag + * ltmain.in: FreeBSD bug that needs symbol table compiled with -fPIC is fixed in release 3.1; use it only for 2.* and 3.0 diff --git a/ltmain.in b/ltmain.in index 3a4932745..79582bf25 100644 --- a/ltmain.in +++ b/ltmain.in @@ -927,8 +927,8 @@ compiler." if test -n "$link_static_flag"; then compile_command="$compile_command $link_static_flag" finalize_command="$finalize_command $link_static_flag" - dlopen_self=$dlopen_self_static fi + dlopen_self=$dlopen_self_static continue ;; @@ -1055,8 +1055,8 @@ compiler." if test -z "$pic_flag" && test -n "$link_static_flag"; then compile_command="$compile_command $link_static_flag" finalize_command="$finalize_command $link_static_flag" - dlopen_self=$dlopen_self_static fi + dlopen_self=$dlopen_self_static continue ;;