From: Alexandre Oliva Date: Fri, 2 Apr 1999 05:04:56 +0000 (+0000) Subject: * ltconfig.in (link_all_deplibs): set to unknown by default X-Git-Tag: release-1-3b~165 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0319e3453662f956c31ac71c084aee87df04e3bd;p=thirdparty%2Flibtool.git * ltconfig.in (link_all_deplibs): set to unknown by default * ltmain.in: test != no, not = yes * doc/libtool.texi: document unknown --- diff --git a/ChangeLog b/ChangeLog index 25f1fd5bf..319c6b91e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1999-04-02 Alexandre Oliva + + * ltconfig.in (link_all_deplibs): set to unknown by default + * ltmain.in: test != no, not = yes + * doc/libtool.texi: document unknown + 1999-04-01 Thomas Tanner * doc/libtool.texi: documented deplibs.test diff --git a/doc/libtool.texi b/doc/libtool.texi index a8408f20e..28b6caf02 100644 --- a/doc/libtool.texi +++ b/doc/libtool.texi @@ -3874,7 +3874,8 @@ the file name that the linker finds when given @samp{-l@var{name}}. @defvar link_all_deplibs Whether libtool must link a program against all its dependency libraries. -Set to @samp{yes} or @samp{no}. Default is @samp{no}. +Set to @samp{yes} or @samp{no}. Default is @samp{unknown}, which is +a synonym for @samp{yes}. @end defvar @defvar link_static_flag diff --git a/ltconfig.in b/ltconfig.in index 36b43696d..3b9b677ad 100755 --- a/ltconfig.in +++ b/ltconfig.in @@ -1008,7 +1008,7 @@ hardcode_direct=no hardcode_minus_L=no hardcode_shlibpath_var=unsupported runpath_var= -link_all_deplibs=no +link_all_deplibs=unknown always_export_symbols=no export_symbols_cmds='$NM $libobjs | $global_symbol_pipe | sed '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* diff --git a/ltmain.in b/ltmain.in index 64b8b86f0..6a71a32dd 100644 --- a/ltmain.in +++ b/ltmain.in @@ -2515,7 +2515,7 @@ EOF ;; esac - if test "$link_all_deplibs" = yes || \ + if test "$link_all_deplibs" != no || \ test "$fast_install" = yes || \ test "$build_libtool_libs" = no || \ test -z "$library_names"; then