diff options
author | Tim Janik <timj@gtk.org> | 1998-05-07 04:04:15 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 1998-05-07 04:04:15 +0000 |
commit | 39ff37dc74f4e3a5f0eedbcab5a2c7c232d761e9 (patch) | |
tree | 311f7a366a88b39e2576150bb54e818f30468eb2 /ltmain.sh | |
parent | 91d3176504f1a52f7211fcb20b9b33bd12472d09 (diff) | |
download | gtk+-39ff37dc74f4e3a5f0eedbcab5a2c7c232d761e9.tar.gz |
postfix -lg* libraries with LT_RELEASE.
Thu May 7 05:14:19 1998 Tim Janik <timj@gtk.org>
* gtk-config.in (--libs): postfix -lg* libraries with LT_RELEASE.
* ltmain.sh: added a new commandline flag -postfix similar to -release,
but will immediately change the library name.
* gdk/Makefile.am:
* gtk/Makefile.am: specify -postfix and -version-info
* configure.in: version bump to 1.1.0. added GTK_INTERFACE_AGE and
GTK_BINARY_AGE. calculate LT_* variables for libtool.
Diffstat (limited to 'ltmain.sh')
-rw-r--r-- | ltmain.sh | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -386,6 +386,7 @@ if test -z "$show_help"; then prev= prevarg= release= + postfix= rpath= perm_rpath= temp_rpath= @@ -437,6 +438,11 @@ if test -z "$show_help"; then prev= continue ;; + postfix) + postfix="-$arg" + prev= + continue + ;; rpath) rpath="$rpath $arg" prev= @@ -520,6 +526,11 @@ if test -z "$show_help"; then continue ;; + -postfix) + prev=postfix + continue + ;; + -rpath) prev=rpath continue @@ -842,7 +853,7 @@ if test -z "$show_help"; then ;; esac - name=`$echo "X$output" | $Xsed -e 's/\.la$//' -e 's/^lib//'` + name=`$echo "X$output" | $Xsed -e 's/\.la$//' -e 's/^lib//'`$postfix eval libname=\"$libname_spec\" # All the library-specific variables (install_libdir is set above). |