Line 1... |
Line 1... |
# Generated from ltmain.m4sh.
|
# Generated from ltmain.m4sh.
|
|
|
# ltmain.sh (GNU libtool) 2.2.6b
|
# ltmain.sh (GNU libtool) 2.2.6
|
# 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.
|
# This is free software; see the source for copying conditions. There is NO
|
# This is free software; see the source for copying conditions. There is NO
|
# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
Line 63... |
Line 63... |
# host-triplet: $host
|
# host-triplet: $host
|
# shell: $SHELL
|
# shell: $SHELL
|
# 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.6b
|
# $progname: (GNU libtool) 2.2.6 Debian-2.2.6a-4
|
# automake: $automake_version
|
# automake: $automake_version
|
# autoconf: $autoconf_version
|
# autoconf: $autoconf_version
|
#
|
#
|
# Report bugs to <bug-libtool@gnu.org>.
|
# Report bugs to <bug-libtool@gnu.org>.
|
|
|
PROGRAM=ltmain.sh
|
PROGRAM=ltmain.sh
|
PACKAGE=libtool
|
PACKAGE=libtool
|
VERSION=2.2.6b
|
VERSION="2.2.6 Debian-2.2.6a-4"
|
TIMESTAMP=""
|
TIMESTAMP=""
|
package_revision=1.3017
|
package_revision=1.3012
|
|
|
# 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
|
emulate sh
|
emulate sh
|
NULLCMD=:
|
NULLCMD=:
|
Line 5031... |
Line 5031... |
fi
|
fi
|
if test "$linkmode" = prog; then
|
if test "$linkmode" = prog; then
|
case $pass in
|
case $pass in
|
dlopen) libs="$dlfiles" ;;
|
dlopen) libs="$dlfiles" ;;
|
dlpreopen) libs="$dlprefiles" ;;
|
dlpreopen) libs="$dlprefiles" ;;
|
link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;
|
link)
|
|
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
|
# Collect and forward deplibs of preopened libtool libs
|
# Collect and forward deplibs of preopened libtool libs
|
for lib in $dlprefiles; do
|
for lib in $dlprefiles; do
|
Line 5342... |
Line 5345... |
func_fatal_error "cannot find name of link library for \`$lib'"
|
func_fatal_error "cannot find name of link library for \`$lib'"
|
fi
|
fi
|
# 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"
|
if $opt_duplicate_deps ; then
|
if $opt_duplicate_deps ; then
|
case "$tmp_libs " in
|
case "$tmp_libs " in
|
*" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
|
*" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
|
esac
|
esac
|
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
|
|
|
|
|
# Get the name of the library we link against.
|
# Get the name of the library we link against.
|
Line 5891... |
Line 5894... |
done
|
done
|
|
|
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)
|
func_dirname "$deplib" "" "."
|
func_dirname "$deplib" "" "."
|
dir="$func_dirname_result"
|
dir="$func_dirname_result"
|
Line 6204... |
Line 6208... |
current=$func_arith_result
|
current=$func_arith_result
|
age="$number_minor"
|
age="$number_minor"
|
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)
|
current="$1"
|
current="$1"
|
revision="$2"
|
revision="$2"
|