Fix configure.ac for betawidget
* It seems that autoconf (2.63 or 2.62) changed the names that are acceptable as custom variable name, and no longer accepts LT_\w+ as variable names. This addresses #201 and hopefully fixes it. @EvilGuru, if this fixes it, please close the ticket. git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@6538 4a71c877-e1ca-e34f-864e-861f7616d084master
parent
0881493713
commit
f224f9f2df
|
@ -7,18 +7,18 @@ AC_INIT(betawidget, VERSION)
|
|||
# libtool shared library version
|
||||
|
||||
# Increment if the interface has additions, changes, removals.
|
||||
LT_CURRENT=0
|
||||
LIB_CURRENT=0
|
||||
|
||||
# Increment any time the source changes; set to
|
||||
# 0 if you increment CURRENT
|
||||
LT_REVISION=0
|
||||
LIB_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
|
||||
LIB_AGE=0
|
||||
|
||||
AC_SUBST([LIBTOOL_VERSION], ["$LT_CURRENT:$LT_REVISION:$LT_AGE"])
|
||||
AC_SUBST([LIBTOOL_VERSION], ["$LIB_CURRENT:$LIB_REVISION:$LIB_AGE"])
|
||||
|
||||
AC_CONFIG_SRCDIR([src/vector.h])
|
||||
AC_CONFIG_HEADER([config.h])
|
||||
|
|
Loading…
Reference in New Issue