summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Bruguier <nicolas.bruguier@supersonicimagine.fr>2008-11-29 14:05:33 +0100
committerNicolas Bruguier <nicolas.bruguier@supersonicimagine.fr>2008-11-29 14:05:33 +0100
commit517d4edb59978d37a48b6fc52bf515152625c5fd (patch)
tree8ef7a6f37661427497ea49876598870ca6bb9d1b
parent891291da37a9cb5592626fa41db0616710aa340a (diff)
[glitz] Add GLITZ_ prefix to library version variables.
Add GLITZ_ prefix to library version variables to avoid any conflicts with libtool variables.
-rw-r--r--configure.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index db52d38..2a0f9c2 100644
--- a/configure.in
+++ b/configure.in
@@ -18,18 +18,18 @@ dnl ===========================================================================
# libtool shared library version
# Increment if the interface has additions, changes, removals.
-LT_CURRENT=1
+GLITZ_LT_CURRENT=1
# Increment any time the source changes; set to
# 0 if you increment CURRENT
-LT_REVISION=0
+GLITZ_LT_REVISION=0
# Increment if any interfaces have been added; set to 0
# if any interfaces have been removed. removal has
# precedence over adding, so set to 0 if both happened.
-LT_AGE=0
+GLITZ_LT_AGE=0
-VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE"
+VERSION_INFO="$GLITZ_LT_CURRENT:$GLITZ_LT_REVISION:$GLITZ_LT_AGE"
AC_SUBST(VERSION_INFO)
dnl ===========================================================================