X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=configure.ac;h=98c376d4970cf48c748d4c0ec8d5f1a1367face7;hb=7416313cad8d0dc51d5a5ea31b20296755f3049d;hp=e33f375d19a3a89bef85c2e0c181f8f86f9f8e11;hpb=2f9efb384d7afd456c44dd1b0c4619adbae5b248;p=chaz%2Fopenbox diff --git a/configure.ac b/configure.ac index e33f375d..98c376d4 100644 --- a/configure.ac +++ b/configure.ac @@ -1,17 +1,15 @@ AC_PREREQ([2.54]) -AC_INIT([openbox], [3.0-alpha1], [http://bugzilla.icculus.org]) +AC_INIT([openbox], [3.0-alpha8], [http://bugzilla.icculus.org]) AM_INIT_AUTOMAKE -AC_CONFIG_SRCDIR([kernel/openbox.c]) +AC_CONFIG_SRCDIR([openbox/openbox.c]) AC_PREFIX_DEFAULT([/usr/local]) test "$prefix" = "NONE" && prefix=$ac_default_prefix -AC_PATH_PROG([SED], [sed]) -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 @@ -25,7 +23,7 @@ LIBTOOL="$LIBTOOL --silent" AC_PROG_INSTALL ALL_LINGUAS="" -AM_GNU_GETTEXT_VERSION(0.11.5) +AM_GNU_GETTEXT_VERSION(0.12.1) AM_GNU_GETTEXT([external]) AC_CHECK_HEADERS(ctype.h fcntl.h locale.h signal.h string.h stdio.h stdlib.h) @@ -37,10 +35,6 @@ PKG_CHECK_MODULES([GLIB], [glib-2.0]) AC_SUBST(GLIB_CFLAGS) AC_SUBST(GLIB_LIBS) -PKG_CHECK_MODULES([GMODULE], [gmodule-2.0]) -AC_SUBST(GMODULE_CFLAGS) -AC_SUBST(GMODULE_LIBS) - PKG_CHECK_MODULES(XFT, [xft]) AC_SUBST(XFT_CFLAGS) AC_SUBST(XFT_LIBS) @@ -51,7 +45,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) ], @@ -66,14 +60,14 @@ PKG_CHECK_MODULES(GTK, [gtk+-2.0], AC_SUBST(GTK_LIBS) use_gtk="yes" - PKG_CHECK_MODULES(GLADE, [libglade-2.0], + PKG_CHECK_MODULES(GDK_PIXBUF, [gdk-pixbuf-2.0], [ - AC_SUBST(GLADE_CFLAGS) - AC_SUBST(GLADE_LIBS) - use_glade="yes" + AC_SUBST(GDK_PIXBUF_CFLAGS) + AC_SUBST(GDK_PIXBUF_LIBS) + use_gdk_pixbuf="yes" ], [ - use_glade="no" + use_gdk_pixbuf="no" AC_MSG_WARN([disabling build of the configuration tool]) ] ) @@ -83,7 +77,8 @@ PKG_CHECK_MODULES(GTK, [gtk+-2.0], AC_MSG_WARN([disabling build of the configuration tool]) ] ) -AM_CONDITIONAL(OBCONF, [test "$use_gtk" = "yes" && test "$use_glade" = "yes"]) +AM_CONDITIONAL(OBCONF, + [test "$use_gtk" = "yes" && test "$use_gdk_pixbuf" = "yes"]) # Check for session management X11_SM @@ -99,32 +94,12 @@ X11_EXT_VIDMODE X11_EXT_SHAPE X11_EXT_XINERAMA -AC_CONFIG_FILES([Makefile - m4/Makefile - po/Makefile.in - themes/Makefile - themes/ebox_data/Makefile - themes/fieron_data/Makefile - themes/fieron2_data/Makefile - data/Makefile - render/Makefile - parser/Makefile - kernel/Makefile - plugins/Makefile - plugins/resistance/Makefile - plugins/placement/Makefile - plugins/mouse/Makefile - plugins/keyboard/Makefile - plugins/menu/Makefile - tools/Makefile - tools/obconf/Makefile]) +AC_CONFIG_FILES([ + Makefile + m4/Makefile + po/Makefile.in +]) AC_OUTPUT -AC_MSG_RESULT -if test "$DEBUG" = "yes"; then - AC_MSG_RESULT([Creating a DEBUG build.]) -else - AC_MSG_RESULT([Creating a RELEASE build.]) -fi AC_MSG_RESULT AC_MSG_RESULT([configure complete, now type \"make\"])