]> Dogcows Code - chaz/openbox/blobdiff - configure.ac
remove that shti
[chaz/openbox] / configure.ac
index d9234a4bbad3ce1b9e763fcd5bb0eda10d89672d..3df4eadefcb1f5d2dded410fe31e663df84995f2 100644 (file)
@@ -1,5 +1,5 @@
 AC_PREREQ([2.54])
-AC_INIT([openbox], [3.0-beta2], [http://bugzilla.icculus.org])
+AC_INIT([openbox], [3.0-beta3], [http://bugzilla.icculus.org])
 AM_INIT_AUTOMAKE
 AC_CONFIG_SRCDIR([openbox/openbox.c])
 
@@ -15,9 +15,9 @@ 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=0
+OB_MICRO_VERSION=1
 OB_INTERFACE_AGE=0
-OB_BINARY_AGE=0
+OB_BINARY_AGE=1
 OB_VERSION=$OB_MAJOR_VERSION.$OB_MINOR_VERSION
 
 AC_SUBST(OB_MAJOR_VERSION)
@@ -28,7 +28,7 @@ AC_SUBST(OB_BINARY_AGE)
 AC_SUBST(OB_VERSION)
 
 dnl Libtool versioning
-LT_RELEASE=$VERSION
+LT_RELEASE=$OB_MAJOR_VERSION.$OB_MINOR_VERSION
 LT_CURRENT=`expr $OB_MICRO_VERSION - $OB_INTERFACE_AGE`
 LT_REVISION=$OB_INTERFACE_AGE
 LT_AGE=`expr $OB_BINARY_AGE - $OB_INTERFACE_AGE`
@@ -51,8 +51,6 @@ OB_COMPILER_FLAGS
 AC_C_CONST
 AC_C_INLINE
 
-AC_DISABLE_STATIC
-AC_LIBTOOL_DLOPEN
 AC_PROG_LIBTOOL
 AC_SUBST(LIBTOOL_DEPS)
 LIBTOOL="$LIBTOOL --silent"
@@ -68,6 +66,11 @@ AC_CHECK_HEADERS(unistd.h sys/stat.h sys/select.h sys/time.h sys/wait.h)
 # AC_HEADER_TIME
 # AC_TYPE_SIGNAL
 
+AC_PATH_PROG([SED], [sed], [no])
+if test "$SED" = "no"; then
+  AC_MSG_ERROR([The program "sed" is not avaiable. This program is required to build Openbox.])
+fi
+
 PKG_CHECK_MODULES([GLIB], [glib-2.0])
 AC_SUBST(GLIB_CFLAGS)
 AC_SUBST(GLIB_LIBS)
This page took 0.020808 seconds and 4 git commands to generate.