* ltmain.in (-static, -all-static): set dlopen_self to

$dlopen_self_static regardless of link_static_flag or pic_flag
This commit is contained in:
Alexandre Oliva 1999-03-11 22:46:07 +00:00 committed by Alexandre Oliva
parent 16d8b07615
commit d3fefd9d6c
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
1999-03-11 Alexandre Oliva <oliva@dcc.unicamp.br>
* 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

View File

@ -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
;;