X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=configure.ac;h=d8fac47d0c5615f1ed1e2b88a7c9f1fe1514aba0;hb=d34741f58c0732e7c720bbe7aa4cd063f9db92d1;hp=94f816541aaf135417ae425976287c424105a78b;hpb=45b8d7002233bcae5ef4ce52418a03abc9b1c8e1;p=chaz%2Fopenbox diff --git a/configure.ac b/configure.ac index 94f81654..d8fac47d 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.54]) -AC_INIT([openbox], [3.0-rc2], [http://bugzilla.icculus.org]) +AC_INIT([openbox], [3.4.0], [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=1 +OB_MINOR_VERSION=4 +OB_MICRO_VERSION=6 OB_INTERFACE_AGE=0 -OB_BINARY_AGE=1 +OB_BINARY_AGE=0 OB_VERSION=$OB_MAJOR_VERSION.$OB_MINOR_VERSION AC_SUBST(OB_MAJOR_VERSION) @@ -57,7 +57,6 @@ LIBTOOL="$LIBTOOL --silent" AC_PROG_INSTALL -ALL_LINGUAS="" AM_GNU_GETTEXT_VERSION(0.12.1) AM_GNU_GETTEXT([external]) @@ -68,31 +67,45 @@ AC_CHECK_HEADERS(unistd.h sys/stat.h sys/select.h sys/time.h sys/wait.h) 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.]) + AC_MSG_ERROR([The program "sed" is not available. This program is required to build Openbox.]) fi PKG_CHECK_MODULES([GLIB], [glib-2.0]) AC_SUBST(GLIB_CFLAGS) AC_SUBST(GLIB_LIBS) - -PKG_CHECK_MODULES(XFT, [xft]) -AC_SUBST(XFT_CFLAGS) -AC_SUBST(XFT_LIBS) + +PKG_CHECK_MODULES(PANGO, [pango pangoxft]) +AC_SUBST(PANGO_CFLAGS) +AC_SUBST(PANGO_LIBS) PKG_CHECK_MODULES(XML, [libxml-2.0]) AC_SUBST(XML_CFLAGS) AC_SUBST(XML_LIBS) +AC_ARG_ENABLE(startup-notification, + AC_HELP_STRING( + [--enable-startup-notification], + [enable the startup notification library. [[default=enabled]]] + ), + [enable_sn=$enableval], + [enable_sn=yes] +) + +if test "$enable_sn" = yes; then PKG_CHECK_MODULES(LIBSN, [libstartup-notification-1.0], [ AC_DEFINE(USE_LIBSN, [1], [Use startup-notification]) AC_SUBST(LIBSN_CFLAGS) AC_SUBST(LIBSN_LIBS) + sn_found=yes ], [ - no_such_luck=yes + sn_found=no ] ) +else + sn_found=no +fi dnl Check for session management X11_SM @@ -104,7 +117,6 @@ AC_SUBST(EFENCE_LIBS) dnl Check for X11 extensions X11_EXT_XKB X11_EXT_XRANDR -X11_EXT_VIDMODE X11_EXT_SHAPE X11_EXT_XINERAMA @@ -114,8 +126,13 @@ AC_CONFIG_FILES([ po/Makefile.in render/obrender-3.0.pc parser/obparser-3.0.pc + version.h ]) AC_OUTPUT AC_MSG_RESULT -AC_MSG_RESULT([configure complete, now type \"make\"]) +AC_MSG_RESULT([Compiling with these options: + Startup Notification... $sn_found + Session Management... $SM + ]) +AC_MSG_RESULT([configure complete, now type "make"])