]> Dogcows Code - chaz/openbox/blobdiff - configure.ac
count the EnterNotify events and tell openbox to ignore them when ungrabbing the...
[chaz/openbox] / configure.ac
index 9807c79392dc2f9e6006e9151c8fccd7dd6d8d04..3df4eadefcb1f5d2dded410fe31e663df84995f2 100644 (file)
@@ -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`
@@ -66,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.019861 seconds and 4 git commands to generate.