X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=configure.ac;h=d462ddc0f67d6df356921482bcfc456f06a901b4;hb=a95dc346fe7951dd48e41a41fcaafb6d872b0337;hp=21fc5219d65fa7628e13fb7368d5f824746d3134;hpb=d2857b11944146e2e6973b7f7280cb57e1ee260b;p=chaz%2Fopenbox diff --git a/configure.ac b/configure.ac index 21fc5219..d462ddc0 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ -AC_PREREQ([2.50]) -AC_INIT([openbox], [2.90.0cvs], [http://bugzilla.icculus.org]) +AC_PREREQ([2.54]) +AC_INIT([openbox], [3.0-alpha1], [http://bugzilla.icculus.org]) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([kernel/openbox.c]) @@ -12,18 +12,11 @@ test "$SED" || AC_MSG_ERROR([sed not found]) # Determine build target OB_DEBUG # Pick compiler specific/build target flags, and set $CVS +AM_PROG_CC_C_O OB_COMPILER_FLAGS AC_C_CONST AC_C_INLINE -if test "$CVS" = "yes"; then - AC_PATH_PROG([FLEX], [flex]) - test "$FLEX" || AC_MSG_ERROR([flex not found]) - - AC_PATH_PROG([BISON], [bison]) - test "BISON" || AC_MSG_ERROR([bison not found]) -fi - AC_DISABLE_STATIC AC_LIBTOOL_DLOPEN AC_PROG_LIBTOOL @@ -59,7 +52,7 @@ AC_SUBST(XML_LIBS) PKG_CHECK_MODULES(LIBSN, [libstartup-notification-1.0], [ - AC_DEFINE(USE_LIBSN) + AC_DEFINE(USE_LIBSN, [1], [Use startup-notification]) AC_SUBST(LIBSN_CFLAGS) AC_SUBST(LIBSN_LIBS) ], @@ -68,6 +61,38 @@ PKG_CHECK_MODULES(LIBSN, [libstartup-notification-1.0], ] ) +PKG_CHECK_MODULES(GTK, [gtk+-2.0], + [ + AC_SUBST(GTK_CFLAGS) + AC_SUBST(GTK_LIBS) + use_gtk="yes" + + PKG_CHECK_MODULES(GLADE, [libglade-2.0], + [ + AC_SUBST(GLADE_CFLAGS) + AC_SUBST(GLADE_LIBS) + use_glade="yes" + ], + [ + use_glade="no" + AC_MSG_WARN([disabling build of the configuration tool]) + ] + ) + ], + [ + use_gtk="no" + AC_MSG_WARN([disabling build of the configuration tool]) + ] +) +AM_CONDITIONAL(OBCONF, [test "$use_gtk" = "yes" && test "$use_glade" = "yes"]) + +# Check for session management +X11_SM + +#EFENCE_LIBS=-lefence +EFENCE_LIBS="" +AC_SUBST(EFENCE_LIBS) + # Check for X11 extensions X11_EXT_XKB X11_EXT_XRANDR @@ -75,19 +100,11 @@ X11_EXT_VIDMODE X11_EXT_SHAPE X11_EXT_XINERAMA -GL_OPTION - -AC_CONFIG_FILES([Makefile - po/Makefile.in - themes/Makefile - data/Makefile - render/Makefile - kernel/Makefile - plugins/Makefile - plugins/placement/Makefile - plugins/mouse/Makefile - plugins/keyboard/Makefile - plugins/menu/Makefile]) +AC_CONFIG_FILES([ + Makefile + m4/Makefile + po/Makefile.in +]) AC_OUTPUT AC_MSG_RESULT