Fix libtool build issue.
This commit is contained in:
parent
bb86b59086
commit
7472e54da1
1 changed files with 15 additions and 22 deletions
|
@ -1,6 +1,6 @@
|
||||||
# Generated from ltmain.m4sh.
|
# Generated from ltmain.m4sh.
|
||||||
|
|
||||||
# ltmain.sh (GNU libtool) 2.2.6
|
# ltmain.sh (GNU libtool) 2.2.6b
|
||||||
# Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
|
# Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
|
||||||
|
|
||||||
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007 2008 Free Software Foundation, Inc.
|
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007 2008 Free Software Foundation, Inc.
|
||||||
|
@ -65,7 +65,7 @@
|
||||||
# compiler: $LTCC
|
# compiler: $LTCC
|
||||||
# compiler flags: $LTCFLAGS
|
# compiler flags: $LTCFLAGS
|
||||||
# linker: $LD (gnu? $with_gnu_ld)
|
# linker: $LD (gnu? $with_gnu_ld)
|
||||||
# $progname: (GNU libtool) 2.2.6 Debian-2.2.6a-4
|
# $progname: (GNU libtool) 2.2.6b
|
||||||
# automake: $automake_version
|
# automake: $automake_version
|
||||||
# autoconf: $autoconf_version
|
# autoconf: $autoconf_version
|
||||||
#
|
#
|
||||||
|
@ -73,9 +73,9 @@
|
||||||
|
|
||||||
PROGRAM=ltmain.sh
|
PROGRAM=ltmain.sh
|
||||||
PACKAGE=libtool
|
PACKAGE=libtool
|
||||||
VERSION="2.2.6 Debian-2.2.6a-4"
|
VERSION=2.2.6b
|
||||||
TIMESTAMP=""
|
TIMESTAMP=""
|
||||||
package_revision=1.3012
|
package_revision=1.3017
|
||||||
|
|
||||||
# Be Bourne compatible
|
# Be Bourne compatible
|
||||||
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
||||||
|
@ -5033,10 +5033,7 @@ func_mode_link ()
|
||||||
case $pass in
|
case $pass in
|
||||||
dlopen) libs="$dlfiles" ;;
|
dlopen) libs="$dlfiles" ;;
|
||||||
dlpreopen) libs="$dlprefiles" ;;
|
dlpreopen) libs="$dlprefiles" ;;
|
||||||
link)
|
link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;
|
||||||
libs="$deplibs %DEPLIBS%"
|
|
||||||
test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs"
|
|
||||||
;;
|
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
if test "$linkmode,$pass" = "lib,dlpreopen"; then
|
if test "$linkmode,$pass" = "lib,dlpreopen"; then
|
||||||
|
@ -5347,6 +5344,9 @@ func_mode_link ()
|
||||||
# It is a libtool convenience library, so add in its objects.
|
# It is a libtool convenience library, so add in its objects.
|
||||||
convenience="$convenience $ladir/$objdir/$old_library"
|
convenience="$convenience $ladir/$objdir/$old_library"
|
||||||
old_convenience="$old_convenience $ladir/$objdir/$old_library"
|
old_convenience="$old_convenience $ladir/$objdir/$old_library"
|
||||||
|
elif test "$linkmode" != prog && test "$linkmode" != lib; then
|
||||||
|
func_fatal_error "\`$lib' is not a convenience library"
|
||||||
|
fi
|
||||||
tmp_libs=
|
tmp_libs=
|
||||||
for deplib in $dependency_libs; do
|
for deplib in $dependency_libs; do
|
||||||
deplibs="$deplib $deplibs"
|
deplibs="$deplib $deplibs"
|
||||||
|
@ -5357,9 +5357,6 @@ func_mode_link ()
|
||||||
fi
|
fi
|
||||||
tmp_libs="$tmp_libs $deplib"
|
tmp_libs="$tmp_libs $deplib"
|
||||||
done
|
done
|
||||||
elif test "$linkmode" != prog && test "$linkmode" != lib; then
|
|
||||||
func_fatal_error "\`$lib' is not a convenience library"
|
|
||||||
fi
|
|
||||||
continue
|
continue
|
||||||
fi # $pass = conv
|
fi # $pass = conv
|
||||||
|
|
||||||
|
@ -5896,7 +5893,6 @@ func_mode_link ()
|
||||||
if test "$link_all_deplibs" != no; then
|
if test "$link_all_deplibs" != no; then
|
||||||
# Add the search paths of all dependency libraries
|
# Add the search paths of all dependency libraries
|
||||||
for deplib in $dependency_libs; do
|
for deplib in $dependency_libs; do
|
||||||
path=
|
|
||||||
case $deplib in
|
case $deplib in
|
||||||
-L*) path="$deplib" ;;
|
-L*) path="$deplib" ;;
|
||||||
*.la)
|
*.la)
|
||||||
|
@ -6210,9 +6206,6 @@ func_mode_link ()
|
||||||
revision="$number_minor"
|
revision="$number_minor"
|
||||||
lt_irix_increment=no
|
lt_irix_increment=no
|
||||||
;;
|
;;
|
||||||
*)
|
|
||||||
func_fatal_configuration "$modename: unknown library version type \`$version_type'"
|
|
||||||
;;
|
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
no)
|
no)
|
||||||
|
|
Loading…
Reference in a new issue