public
Description: A Clutter-based Twitter client
Homepage: http://live.gnome.org/Tweet
Clone URL: git://github.com/ebassi/tweet.git
Search Repo:
Fix problems with libtool 2.2

Libtool 2.2 does not like variables matching to:

  ^_?LT_[A-Z_]+$]

So we need to rename out LT_* variables to LIBT_* to avoid
an error in the autogen phase.
Emmanuele Bassi (author)
Sat Jun 21 09:38:45 -0700 2008
commit  af44a5ce1af4a7252b5acbd491948437deaf06fc
tree    8bae068ccc00c771f701347e0a25713050fb3290
parent  921c6dff0751c4ac6792b293552bfdf1fe595d16
...
59
60
61
62
63
64
65
66
 
 
 
 
 
67
68
69
...
59
60
61
 
 
 
 
 
62
63
64
65
66
67
68
69
0
@@ -59,11 +59,11 @@ AC_SUBST(TWEET_MINOR_VERSION)
0
 AC_SUBST(TWEET_VERSION)
0
 
0
 dnl twitter-glib checks
0
-LT_CURRENT=lt_current
0
-LT_REVISION=lt_revision
0
-LT_AGE=lt_age
0
-LT_VERSION="$LT_CURRENT:$LT_REVISION:$LT_AGE"
0
-TWITTER_GLIB_LT_LDFLAGS="-version-info $LT_VERSION"
0
+LIBT_CURRENT=lt_current
0
+LIBT_REVISION=lt_revision
0
+LIBT_AGE=lt_age
0
+LIBT_VERSION="$LIBT_CURRENT:$LIBT_REVISION:$LIBT_AGE"
0
+TWITTER_GLIB_LT_LDFLAGS="-version-info $LIBT_VERSION"
0
 AC_SUBST(TWITTER_GLIB_LT_LDFLAGS)
0
 
0
 PKG_CHECK_MODULES(TWITTER_GLIB,

Comments

    No one has commented yet.