summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorJames Henstridge <james@daa.com.au>2001-04-13 10:36:27 +0000
committerJames Henstridge <jamesh@src.gnome.org>2001-04-13 10:36:27 +0000
commitd3f7910e7e8e789e11438e55a09cd11a562cfd48 (patch)
tree19a2a701bc3c6220ec4ae36532de238ce9794b6f /configure.in
parentb06fe6f72867dc1318645b212a25a373fa22f086 (diff)
downloadpango-d3f7910e7e8e789e11438e55a09cd11a562cfd48.tar.gz
AC_INIT should be the first statement in the file. Also, use
2001-04-13 James Henstridge <james@daa.com.au> * configure.in: AC_INIT should be the first statement in the file. Also, use $PANGO_MAJOR_VERSION.$PANGO_MINOR_VERSION as the version passed to AM_INIT_AUTOMAKE.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index c85ec222..26be3446 100644
--- a/configure.in
+++ b/configure.in
@@ -1,13 +1,14 @@
dnl Process this file with autoconf to create configure.
+AC_INIT(ChangeLog)
+
PANGO_MAJOR_VERSION=0
PANGO_MINOR_VERSION=14
AC_SUBST(PANGO_MAJOR_VERSION)
AC_SUBST(PANGO_MINOR_VERSION)
-AC_INIT(ChangeLog)
-AM_INIT_AUTOMAKE(pango, 0.14)
+AM_INIT_AUTOMAKE(pango, $PANGO_MAJOR_VERSION.$PANGO_MINOR_VERSION)
AM_CONFIG_HEADER(config.h)