2 AC_INIT([kernel/openbox.c])
3 # AC_CONFIG_HEADERS(config.h)
6 AC_ENABLE_SHARED([yes])
8 AC_PREFIX_DEFAULT([/usr/local])
9 if test "$prefix" = "NONE"; then
10 prefix=$ac_default_prefix
11 ac_configure_args="$ac_configure_args --prefix $prefix"
14 AM_INIT_AUTOMAKE([openbox], [2.90.0cvs])
16 AC_PATH_PROG([SED], [sed])
17 test "$SED" || AC_MSG_ERROR([sed not found])
20 # Determine build target
22 # Pick compiler specific/build target flags, and set $CVS
25 PKG_CHECK_MODULES([GLIB], [glib-2.0])
29 PKG_CHECK_MODULES([GMODULE], [gmodule-2.0])
30 AC_SUBST(GMODULE_CFLAGS)
31 AC_SUBST(GMODULE_LIBS)
35 LIBTOOL="$LIBTOOL --silent"
39 AM_GNU_GETTEXT_VERSION(0.11.5)
40 AM_GNU_GETTEXT([external])
42 AC_CHECK_HEADERS(ctype.h fcntl.h locale.h signal.h string.h stdio.h stdlib.h)
43 AC_CHECK_HEADERS(unistd.h sys/stat.h sys/select.h sys/time.h sys/wait.h)
47 PKG_CHECK_MODULES(XFT, xft)
51 # Check for X11 extensions
56 AC_CONFIG_FILES([Makefile po/Makefile.in
60 engines/openbox/Makefile
62 plugins/keyboard/Makefile
63 plugins/mouse/Makefile
64 plugins/placement/Makefile
70 themes/openbox/Makefile])
74 AC_MSG_RESULT([$PACKAGE version $VERSION configured successfully.])
77 if test "$DEBUG" = "yes"; then
78 AC_MSG_RESULT([Creating a DEBUG build.])
80 AC_MSG_RESULT([Creating a RELEASE build.])
83 AC_MSG_RESULT([configure complete, now type \"make\"])