summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2009-09-14 10:00:20 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2009-09-14 10:00:20 +0100
commit6ec2f8f6c09e583129d6d3e6d0e97b3167307b17 (patch)
tree3cd8d9ca529ce59a7643bee94a971be42717eddc
parentdbaf49d107df1e95eaf13f4c24d79acc2223bf4a (diff)
Automake build fix
-rw-r--r--configure.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index 244bd98..25f1c17 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
+m4_define([LT_CURRENT], 1)
# Increment any time the source changes; set to
# 0 if you increment CURRENT
-LT_REVISION=0
+m4_define([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
+m4_define([LT_AGE], 0)
-VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE"
+VERSION_INFO="LT_CURRENT:LT_REVISION:LT_AGE"
AC_SUBST(VERSION_INFO)
dnl ===========================================================================