~ubuntu-branches/ubuntu/raring/mesa/raring

« back to all changes in this revision

Viewing changes to bin/ltmain.sh

  • Committer: Package Import Robot
  • Author(s): Maarten Lankhorst
  • Date: 2013-01-22 11:54:09 UTC
  • mfrom: (1.7.13)
  • Revision ID: package-import@ubuntu.com-20130122115409-5e9xii2ee1whab3e
Tags: 9.0.2-0ubuntu1
* New upstream release.
* Decrease size of mesa's libgl1-mesa-dri again
  - re-enable 117-static-gallium.patch
  - add 118-dricore-gallium.patch to link against libdricore again

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
#         compiler:             $LTCC
71
71
#         compiler flags:               $LTCFLAGS
72
72
#         linker:               $LD (gnu? $with_gnu_ld)
73
 
#         $progname:    (GNU libtool) 2.4.2
 
73
#         $progname:    (GNU libtool) 2.4.2 Debian-2.4.2-1.1
74
74
#         automake:     $automake_version
75
75
#         autoconf:     $autoconf_version
76
76
#
80
80
 
81
81
PROGRAM=libtool
82
82
PACKAGE=libtool
83
 
VERSION=2.4.2
 
83
VERSION="2.4.2 Debian-2.4.2-1.1"
84
84
TIMESTAMP=""
85
85
package_revision=1.3337
86
86
 
6124
6124
        case $pass in
6125
6125
        dlopen) libs="$dlfiles" ;;
6126
6126
        dlpreopen) libs="$dlprefiles" ;;
6127
 
        link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;
 
6127
        link)
 
6128
          libs="$deplibs %DEPLIBS%"
 
6129
          test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs"
 
6130
          ;;
6128
6131
        esac
6129
6132
      fi
6130
6133
      if test "$linkmode,$pass" = "lib,dlpreopen"; then
6444
6447
            # It is a libtool convenience library, so add in its objects.
6445
6448
            func_append convenience " $ladir/$objdir/$old_library"
6446
6449
            func_append old_convenience " $ladir/$objdir/$old_library"
 
6450
            tmp_libs=
 
6451
            for deplib in $dependency_libs; do
 
6452
              deplibs="$deplib $deplibs"
 
6453
              if $opt_preserve_dup_deps ; then
 
6454
                case "$tmp_libs " in
 
6455
                *" $deplib "*) func_append specialdeplibs " $deplib" ;;
 
6456
                esac
 
6457
              fi
 
6458
              func_append tmp_libs " $deplib"
 
6459
            done
6447
6460
          elif test "$linkmode" != prog && test "$linkmode" != lib; then
6448
6461
            func_fatal_error "\`$lib' is not a convenience library"
6449
6462
          fi
6450
 
          tmp_libs=
6451
 
          for deplib in $dependency_libs; do
6452
 
            deplibs="$deplib $deplibs"
6453
 
            if $opt_preserve_dup_deps ; then
6454
 
              case "$tmp_libs " in
6455
 
              *" $deplib "*) func_append specialdeplibs " $deplib" ;;
6456
 
              esac
6457
 
            fi
6458
 
            func_append tmp_libs " $deplib"
6459
 
          done
6460
6463
          continue
6461
6464
        fi # $pass = conv
6462
6465
 
7349
7352
            revision="$number_minor"
7350
7353
            lt_irix_increment=no
7351
7354
            ;;
 
7355
          *)
 
7356
            func_fatal_configuration "$modename: unknown library version type \`$version_type'"
 
7357
            ;;
7352
7358
          esac
7353
7359
          ;;
7354
7360
        no)