~damg/gnome-system-monitor/lp296097_

« back to all changes in this revision

Viewing changes to ltmain.sh

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Moog
  • Date: 2009-07-13 14:53:38 UTC
  • mfrom: (1.1.55 upstream)
  • Revision ID: james.westby@ubuntu.com-20090713145338-ge71lp0ml0rjvcer
Tags: 2.27.4-0ubuntu1
* New upstrem version: (LP: #398760)
  - NetBSD sysinfo support.
* debian/control{.in}:
  - remove useless scrollkeeper Build dependency
* debian/patches/69_disable_maintainer_mode.patch
  - disable the maintainer mode, this could cause a FTBFS
* debian/patches/70_autoconf.patch
  - renamed to 70_autoreconf.patch
  - run autoreconf to also update the makefiles

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
#       compiler:               $LTCC
66
66
#       compiler flags:         $LTCFLAGS
67
67
#       linker:         $LD (gnu? $with_gnu_ld)
68
 
#       $progname:              (GNU libtool) 2.2.6 Debian-2.2.6a-4
 
68
#       $progname:              (GNU libtool) 2.2.6 Debian-2.2.6a-1ubuntu1
69
69
#       automake:               $automake_version
70
70
#       autoconf:               $autoconf_version
71
71
#
73
73
 
74
74
PROGRAM=ltmain.sh
75
75
PACKAGE=libtool
76
 
VERSION="2.2.6 Debian-2.2.6a-4"
 
76
VERSION="2.2.6 Debian-2.2.6a-1ubuntu1"
77
77
TIMESTAMP=""
78
78
package_revision=1.3012
79
79
 
5347
5347
            # It is a libtool convenience library, so add in its objects.
5348
5348
            convenience="$convenience $ladir/$objdir/$old_library"
5349
5349
            old_convenience="$old_convenience $ladir/$objdir/$old_library"
5350
 
            tmp_libs=
5351
 
            for deplib in $dependency_libs; do
5352
 
              deplibs="$deplib $deplibs"
5353
 
              if $opt_duplicate_deps ; then
5354
 
                case "$tmp_libs " in
5355
 
                *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
5356
 
                esac
5357
 
              fi
5358
 
              tmp_libs="$tmp_libs $deplib"
5359
 
            done
5360
5350
          elif test "$linkmode" != prog && test "$linkmode" != lib; then
5361
5351
            func_fatal_error "\`$lib' is not a convenience library"
5362
5352
          fi
 
5353
          tmp_libs=
 
5354
          for deplib in $dependency_libs; do
 
5355
            deplibs="$deplib $deplibs"
 
5356
            if $opt_duplicate_deps ; then
 
5357
              case "$tmp_libs " in
 
5358
              *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
 
5359
              esac
 
5360
            fi
 
5361
            tmp_libs="$tmp_libs $deplib"
 
5362
          done
5363
5363
          continue
5364
5364
        fi # $pass = conv
5365
5365
 
5896
5896
          if test "$link_all_deplibs" != no; then
5897
5897
            # Add the search paths of all dependency libraries
5898
5898
            for deplib in $dependency_libs; do
5899
 
              path=
5900
5899
              case $deplib in
5901
5900
              -L*) path="$deplib" ;;
5902
5901
              *.la)