X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=configure.ac;h=09159bb18640837320aa049b0f459cb1a0254b3e;hb=81743b0529a74982cfcc9e89854d900aeedb686a;hp=cc84622754babfe8f16ca393c00f26462e854bc6;hpb=e0aa54a8912e34e94d42872dba95ade0fda7fdca;p=chaz%2Fopenbox diff --git a/configure.ac b/configure.ac index cc846227..09159bb1 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.54]) -AC_INIT([openbox], [3.3-rc2], [http://bugzilla.icculus.org]) +AC_INIT([openbox], [3.3.1], [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=3 -OB_MICRO_VERSION=3 +OB_MICRO_VERSION=5 OB_INTERFACE_AGE=1 -OB_BINARY_AGE=3 +OB_BINARY_AGE=5 OB_VERSION=$OB_MAJOR_VERSION.$OB_MINOR_VERSION AC_SUBST(OB_MAJOR_VERSION) @@ -74,32 +74,9 @@ PKG_CHECK_MODULES([GLIB], [glib-2.0]) AC_SUBST(GLIB_CFLAGS) AC_SUBST(GLIB_LIBS) -AC_ARG_ENABLE(pango, - AC_HELP_STRING( - [--disable-pango], - [disable the pango library [[default=yes]]] - ), - [enable_pango=$enableval], - [enable_pango=yes] -) - -if test "$enable_pango" = yes; then -PKG_CHECK_MODULES([PANGO], [pango pangoxft], - [ - AC_DEFINE(USE_PANGO, [1], [Use Pango]) - AC_SUBST(PANGO_CFLAGS) - AC_SUBST(PANGO_LIBS) - pango_found=yes - ], - pango_found=no -) -else - pango_found=no -fi - -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) @@ -107,11 +84,11 @@ AC_SUBST(XML_LIBS) AC_ARG_ENABLE(startup-notification, AC_HELP_STRING( - [--disable-startup-notification], - [disable the startup notification library. [[default=yes]]] + [--enable-startup-notification], + [enable the startup notification library. [[default=disabled]]] ), [enable_sn=$enableval], - [enable_sn=yes] + [enable_sn=no] ) if test "$enable_sn" = yes; then @@ -155,7 +132,6 @@ AC_OUTPUT AC_MSG_RESULT AC_MSG_RESULT([Compiling with these options: - Pango... $pango_found Startup Notification... $sn_found Session Management... $SM ])