summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@comhem.se>2005-09-01 16:03:35 +0000
committerMikael Magnusson <mikachu@comhem.se>2005-09-01 16:03:35 +0000
commitfd0b9f760ab69c9e78f522ad0a9fe5d41152a382 (patch)
tree52670102a57d6469fc46ce042e4d19ab5aac9fd7
parentbb649ac996a8dddb315b3283d547a35c26a24afc (diff)
finally fix the autoconf stuff correctly
-rw-r--r--configure.ac20
1 files changed, 10 insertions, 10 deletions
diff --git a/configure.ac b/configure.ac
index 0da42930..440b9824 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.54])
-AC_INIT([openbox], [3.2], [http://bugzilla.icculus.org])
+AC_INIT([openbox], [3.3-rc2], [http://bugzilla.icculus.org])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([openbox/openbox.c])
@@ -14,10 +14,10 @@ dnl
dnl if MAJOR or MINOR version changes, be sure to change AC_INIT above to match
dnl
OB_MAJOR_VERSION=3
-OB_MINOR_VERSION=0
-OB_MICRO_VERSION=2
-OB_INTERFACE_AGE=0
-OB_BINARY_AGE=1
+OB_MINOR_VERSION=3
+OB_MICRO_VERSION=3
+OB_INTERFACE_AGE=1
+OB_BINARY_AGE=3
OB_VERSION=$OB_MAJOR_VERSION.$OB_MINOR_VERSION
AC_SUBST(OB_MAJOR_VERSION)
@@ -76,11 +76,11 @@ AC_SUBST(GLIB_LIBS)
AC_ARG_ENABLE(pango,
AC_HELP_STRING(
- [--enable-pango],
- [enable the pango library for better display of international fonts. [[default=no]]]
+ [--disable-pango],
+ [disable the pango library for better display of international fonts. [[default=yes]]]
),
- [enable_pango=yes],
- [enable_pango=no]
+ [enable_pango=$enableval],
+ [enable_pango=yes]
)
if test "$enable_pango" = yes; then
@@ -110,7 +110,7 @@ AC_ARG_ENABLE(startup-notification,
[--disable-startup-notification],
[disable the startup notification library. [[default=yes]]]
),
- [enable_sn=no],
+ [enable_sn=$enableval],
[enable_sn=yes]
)