~ubuntu-branches/ubuntu/lucid/awn-extras-applets/lucid

« back to all changes in this revision

Viewing changes to ltmain.sh

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne
  • Date: 2010-03-30 20:26:40 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20100330202640-vza3bdnv9gc9bg5z
Tags: 0.4.0~rc1-0ubuntu1
* New upstream release (rc1) (LP: #551309)
 - Stack applet close on click (LP: #261520)
* debian/patches/
 - 03-remove-cairo-menu-pref.patch: From upstream (r1244 + r1245 + r1252),
   remove menu entry for cairo-menu preferences, it's not implemented
   (LP: #511254)
 - 04-tomboy-threading-free.patch: From upstream (r1246), remove threading to
   make the applet working. 
* debian/*.install: Update installation location of comics and digital 
  applets.
* debian/control: 
 - Move digital applet from python to C, and add proper Replaces.
 - Add Replaces for awn-applets-c-core to handle migration from 0.3.2.2.
   (LP: #524559)

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)