1 dnl configure.in for Openbox
2 dnl Initialize autoconf and automake
3 AC_INIT(src/blackbox.cc)
4 AM_INIT_AUTOMAKE(openbox,2.0.0,no-define)
6 dnl Determine default prefix
7 test x$prefix = "xNONE" && prefix="$ac_default_prefix"
9 dnl Check for various flavors of UNIX(r)
13 dnl Locate required external software
18 AC_CHECK_PROGS(regex_cmd, sed)
19 if test x$regex_cmd = "x"; then
20 AC_MSG_ERROR([error. sed is required to build the default menu file.])
23 dnl Check for system header files
24 AC_CHECK_HEADERS(ctype.h dirent.h fcntl.h libgen.h locale.h nl_types.h process.h signal.h stdarg.h stdio.h string.h stdlib.h time.h unistd.h sys/param.h sys/select.h sys/signal.h sys/stat.h sys/time.h sys/types.h sys/wait.h)
27 dnl Check for existance of basename(), setlocale() and strftime()
28 AC_CHECK_FUNCS(basename, , AC_CHECK_LIB(gen, basename,
29 AC_DEFINE(HAVE_BASENAME) LIBS="$LIBS -lgen"))
30 AC_CHECK_FUNCS(getpid setlocale sigaction strftime strcasestr snprintf vsnprintf catopen catgets catclose)
31 AC_CHECK_LIB(nsl, t_open, LIBS="$LIBS -lnsl")
32 AC_CHECK_LIB(socket, socket, LIBS="$LIBS -lsocket")
34 dnl Check for X headers and libraries
38 test x$no_x = "xyes" && AC_MSG_ERROR([Openbox requires the X Window System libraries and headers.])
40 test x$x_includes = "x" && x_includes="/usr/include"
41 test x$x_libraries = "x" && x_libraries="/usr/lib"
43 CFLAGS="$CFLAGS $X_CFLAGS"
44 CXXFLAGS="$CXXFLAGS $X_CFLAGS"
46 LDFLAGS="$LDFLAGS $LIBS $X_PRE_LIBS"
48 dnl Check for required functions in -lX11
49 AC_CHECK_LIB(X11, XOpenDisplay,
51 AC_MSG_ERROR([Could not find XOpenDisplay in -lX11.])
54 LIBS="$LIBS $X_EXTRA_LIBS"
56 dnl Check for XShape extension support and proper library files.
58 AC_MSG_CHECKING([whether to build support for the XShape extension])
60 shape, [ --enable-shape enable support of the XShape extension [default=yes]])
63 if test x$enableval = "xyes"; then
65 AC_CHECK_LIB(Xext, XShapeCombineShape,
66 AC_MSG_CHECKING([for X11/extensions/shape.h])
69 #include <X11/Xutil.h>
70 #include <X11/extensions/shape.h>
71 , long foo = ShapeSet,
80 if test x$SHAPE = "xyes"; then
82 AC_DEFINE(SHAPE,1,Enable support of the XShape extension)
85 dnl Check for Xinerama extension support and proper library files.
87 AC_MSG_CHECKING([whether to build support for the Xinerama extension])
89 xinerama, [ --enable-xinerama enable support of the Xinerama extension [default=no]],
90 if test x$enableval = "xyes"; then
93 AC_CHECK_LIB(Xinerama, XineramaQueryExtension,
94 AC_MSG_CHECKING([for X11/extensions/Xinerama.h])
97 #include <X11/extensions/Xinerama.h>
98 , XineramaScreenInfo foo,
101 LIBS="$LIBS -lXinerama",
111 if test x$XINERAMA = "xyes"; then
112 AC_DEFINE(XINERAMA,1,Enable support of the Xinerama extension)
115 dnl Check for Xft extension support and proper library files.
117 AC_MSG_CHECKING([whether to build support for the Xft extension])
119 xft, [ --enable-xft enable support of the Xft extension [default=yes]])
121 if test x$enableval = "xyes"; then
124 AC_CHECK_LIB(Xft, XftFontOpenXlfd,
125 AC_MSG_CHECKING([for X11/Xft/Xft.h])
127 #include <X11/Xlib.h>
128 #include <X11/Xft/Xft.h>
140 if test x$XFT = "xyes"; then
141 AC_DEFINE(XFT,1,Enable support of the Xft extension)
144 dnl Check for ordered 8bpp dithering
146 AC_MSG_CHECKING([whether to include Pseudocolor ordered dithering code])
147 AC_ARG_ENABLE(ordered-pseudo,
148 [ --enable-ordered-pseudo include code for ordered pseudocolor (8bpp)
149 dithering [default=no]],
150 if test x$enableval = "xyes"; then
158 if test x$ORDEREDPSEUDO = "xyes"; then
159 AC_DEFINE(ORDEREDPSEUDO,1,Enable pseudocolor ordered dithering)
162 dnl Check whether to include debugging code
164 AC_MSG_CHECKING([whether to include verbose debugging code])
166 [ --enable-debug include verbose debugging code [default=no]],
167 if test x$enableval = "xyes"; then
169 DEBUG="-DDEBUG -Wall -W -fno-inline"
179 dnl Check whether to include natural language support (i18n)
181 AC_MSG_CHECKING([whether to include NLS support])
183 [ --enable-nls include natural language support [default=yes]],
184 if test x$enableval = "xyes"; then
194 AC_CHECK_LIB(xpg4, setlocale, LIBS="$LIBS -lxpg4")
196 AC_CHECK_PROGS(gencat_cmd, gencat)
197 if test x$gencat_cmd = "x"; then
201 if test x$NLS = "xyes"; then
202 AC_DEFINE(NLS,1,Include natural language support)
206 dnl Check for new timed pixmap cache
208 AC_MSG_CHECKING([whether to use the timed pixmap cache])
211 [ --enable-timed-cache use timed pixmap cache [default=yes]],
212 if test x$enableval = "xyes"; then
221 if test x$TIMEDCACHE = "xyes"; then
222 AC_DEFINE(TIMEDCACHE,1,Use timed pixmap cache)
225 dnl Determine the return type of signal handlers
228 dnl Determine if maintainer portions of the Makefiles should be included.
233 AC_MSG_RESULT([ $PACKAGE version $VERSION configured successfully.])
235 AC_MSG_RESULT([Using '$prefix' for installation.])
236 AC_MSG_RESULT([Using '$CXX' for C++ compiler.])
237 AC_MSG_RESULT([Building with '$CXXFLAGS' for C++ compiler flags.])
238 AC_MSG_RESULT([Building with '$LIBS' for linker flags.])
242 AM_CONFIG_HEADER(config.h)