Diff for /embedaddon/quagga/ltmain.sh between versions 1.1.1.2 and 1.1.1.3

version 1.1.1.2, 2012/05/29 11:53:40 version 1.1.1.3, 2016/11/02 10:09:09
Line 70 Line 70
 #         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.4.2#         $progname:    (GNU libtool) 2.4.2 Debian-2.4.2-1.1
 #         automake:     $automake_version  #         automake:     $automake_version
 #         autoconf:     $autoconf_version  #         autoconf:     $autoconf_version
 #  #
Line 80 Line 80
   
 PROGRAM=libtool  PROGRAM=libtool
 PACKAGE=libtool  PACKAGE=libtool
VERSION=2.4.2VERSION="2.4.2 Debian-2.4.2-1.1"
 TIMESTAMP=""  TIMESTAMP=""
 package_revision=1.3337  package_revision=1.3337
   
Line 6124  func_mode_link () Line 6124  func_mode_link ()
         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
Line 6444  func_mode_link () Line 6447  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.
             func_append convenience " $ladir/$objdir/$old_library"              func_append convenience " $ladir/$objdir/$old_library"
             func_append old_convenience " $ladir/$objdir/$old_library"              func_append old_convenience " $ladir/$objdir/$old_library"
               tmp_libs=
               for deplib in $dependency_libs; do
                 deplibs="$deplib $deplibs"
                 if $opt_preserve_dup_deps ; then
                   case "$tmp_libs " in
                   *" $deplib "*) func_append specialdeplibs " $deplib" ;;
                   esac
                 fi
                 func_append tmp_libs " $deplib"
               done
           elif test "$linkmode" != prog && test "$linkmode" != lib; then            elif test "$linkmode" != prog && test "$linkmode" != lib; then
             func_fatal_error "\`$lib' is not a convenience library"              func_fatal_error "\`$lib' is not a convenience library"
           fi            fi
           tmp_libs=  
           for deplib in $dependency_libs; do  
             deplibs="$deplib $deplibs"  
             if $opt_preserve_dup_deps ; then  
               case "$tmp_libs " in  
               *" $deplib "*) func_append specialdeplibs " $deplib" ;;  
               esac  
             fi  
             func_append tmp_libs " $deplib"  
           done  
           continue            continue
         fi # $pass = conv          fi # $pass = conv
   
Line 7348  func_mode_link () Line 7351  func_mode_link ()
             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
           ;;            ;;

Removed from v.1.1.1.2  
changed lines
  Added in v.1.1.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>