]> icculus.org git repositories - dana/openbox.git/blob - configure.ac
mention that 2.9x is not supported
[dana/openbox.git] / configure.ac
1 AC_PREREQ([2.50])
2 AC_INIT([src/main.cc])
3 AC_CONFIG_HEADERS(config.h)
4 AC_LANG([C++])
5 AC_ENABLE_STATIC([no])
6 AC_ENABLE_SHARED([yes])
7
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"
12 fi
13
14 AM_INIT_AUTOMAKE([openbox], [2.90.0cvs])
15
16 AC_PATH_PROG([awk_cmd], [awk]) # used by swig.m4
17 test "$awk_cmd" || AC_MSG_ERROR([awk not found])
18 AC_PATH_PROG([regex_cmd], [sed])
19 test "$regex_cmd" || AC_MSG_ERROR([sed not found])
20
21 AM_MAINTAINER_MODE
22 # Determine build target
23 OB_DEBUG
24 # Pick compiler specific/build target flags
25 OB_COMPILER_FLAGS
26 AC_C_BIGENDIAN
27
28 SWIG_PROG(1.3.14)
29 SWIG_ENABLE_CXX
30 SWIG_MULTI_MODULE_SUPPORT
31 SWIG_PYTHON
32         
33 AC_PROG_LN_S
34 AC_PROG_LIBTOOL
35 LIBTOOL="$LIBTOOL --silent"
36 AC_PROG_INSTALL
37
38 ALL_LINGUAS=""
39 AM_GNU_GETTEXT_VERSION(0.11.5)
40 AM_GNU_GETTEXT([external])
41
42 AC_CHECK_HEADERS(fcntl.h signal.h stdarg.h stdint.h unistd.h sys/select.h sys/signal.h sys/stat.h sys/time.h sys/types.h sys/wait.h)
43 # AC_HEADER_TIME
44 # AC_TYPE_SIGNAL
45
46 # Check for Xft2
47 XFT_DEVEL(2.0.0)
48
49 # Check for X11 extensions
50 X11_EXT_XKB
51 X11_EXT_SHAPE
52 X11_EXT_XINERAMA
53
54 AC_CONFIG_FILES([Makefile po/Makefile.in
55                 otk/Makefile
56                 src/Makefile
57                 wrap/Makefile
58                 scripts/Makefile
59                 doc/Makefile
60                 doc/doxygen/Makefile
61                 data/Makefile
62                 data/buttons/Makefile
63                 data/styles/Makefile
64                 ])
65 AC_OUTPUT
66
67 AC_MSG_RESULT
68 AC_MSG_RESULT([$PACKAGE version $VERSION configured successfully.])
69
70 AC_MSG_RESULT
71 if test "$DEBUG" = "yes"; then
72   AC_MSG_RESULT([Creating a DEBUG build.])
73 else
74   AC_MSG_RESULT([Creating a RELEASE build.])
75 fi
76 AC_MSG_RESULT([Using '$prefix' for installation.])
77 AC_MSG_RESULT([Using '$CXX' for C++ compiler.])
78 AC_MSG_RESULT([Building with '$CPPFLAGS' for C++ preprocessor flags.])
79 AC_MSG_RESULT([Building with '$CXXFLAGS' for C++ compiler flags.])
80 AC_MSG_RESULT([Building with '$LIBS' for linker flags.])
81 AC_MSG_RESULT
82 AC_MSG_RESULT([configure complete, now type \"make\"])