]> icculus.org git repositories - mikachu/openbox.git/blob - configure.in
mouse wheel support
[mikachu/openbox.git] / configure.in
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)
5
6 dnl Determine default prefix
7 test x$prefix = "xNONE" && prefix="$ac_default_prefix"
8
9 dnl Check for various flavors of UNIX(r)
10 dnl AC_AIX
11 dnl AC_ISC_POSIX
12
13 dnl Locate required external software
14 AC_PROG_CC
15 AC_PROG_CXX
16 AC_PROG_INSTALL
17
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.])
21 fi
22
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)
25 AC_HEADER_TIME
26
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")
33
34 dnl Check for X headers and libraries
35 AC_PATH_X
36 AC_PATH_XTRA
37
38 test x$no_x = "xyes" && AC_MSG_ERROR([Openbox requires the X Window System libraries and headers.])
39
40 test x$x_includes = "x" && x_includes="/usr/include"
41 test x$x_libraries = "x" && x_libraries="/usr/lib"
42
43 CFLAGS="$CFLAGS $X_CFLAGS"
44 CXXFLAGS="$CXXFLAGS $X_CFLAGS"
45 LIBS="$LIBS $X_LIBS"
46 LDFLAGS="$LDFLAGS $LIBS $X_PRE_LIBS"
47
48 dnl Check for required functions in -lX11
49 AC_CHECK_LIB(X11, XOpenDisplay,
50   LIBS="$LIBS -lX11",
51   AC_MSG_ERROR([Could not find XOpenDisplay in -lX11.])
52 )
53
54 LIBS="$LIBS $X_EXTRA_LIBS"
55
56 Xext_lib=""
57
58 dnl Check for XShape extension support and proper library files.
59 SHAPE=""
60 AC_MSG_CHECKING([whether to build support for the XShape extension])
61 AC_ARG_ENABLE(
62   shape, [  --enable-shape          enable support of the XShape extension [default=yes]])
63
64 : ${enableval="yes"}
65 if test x$enableval = "xyes"; then
66   AC_MSG_RESULT([yes])
67   AC_CHECK_LIB(Xext, XShapeCombineShape,
68     AC_MSG_CHECKING([for X11/extensions/shape.h])
69     AC_TRY_LINK(
70 #include <X11/Xlib.h>
71 #include <X11/Xutil.h>
72 #include <X11/extensions/shape.h>
73 , long foo = ShapeSet,
74       AC_MSG_RESULT([yes])
75       SHAPE="-DSHAPE"; Xext_lib="-lXext",
76       AC_MSG_RESULT([no])
77     )
78   )
79 else
80   AC_MSG_RESULT([no])
81 fi
82 AC_SUBST(SHAPE)
83
84 LIBS="$LIBS $Xext_lib"
85
86 dnl Check for the Slit
87 SLIT=""
88 AC_MSG_CHECKING([whether to include the Slit])
89 AC_ARG_ENABLE(
90   slit, [  --enable-slit           include code for the Slit [default=yes]],
91   if test x$enableval = "xyes"; then
92     AC_MSG_RESULT([yes])
93     SLIT="-DSLIT"
94   else
95     AC_MSG_RESULT([no])
96   fi,
97   AC_MSG_RESULT([yes])
98   SLIT="-DSLIT"
99 )
100 AC_SUBST(SLIT)
101
102 dnl Check for ordered 8bpp dithering
103 ORDEREDPSEUDO=""
104 AC_MSG_CHECKING([whether to include Pseudocolor ordered dithering code])
105 AC_ARG_ENABLE(ordered-pseudo,
106 [  --enable-ordered-pseudo include code for ordered pseudocolor (8bpp)
107                           dithering [default=no]],
108   if test x$enableval = "xyes"; then
109     AC_MSG_RESULT([yes])
110     ORDEREDPSEUDO="-DORDEREDPSEUDO" 
111   else
112     AC_MSG_RESULT([no]) 
113   fi,
114   AC_MSG_RESULT([no])
115 )
116 AC_SUBST(ORDEREDPSEUDO)
117
118 dnl Check for event clobbering
119 CLOBBER=""
120 AC_MSG_CHECKING([whether to intercept mouse events to clients])
121 AC_ARG_ENABLE(clobber,
122 [  --enable-clobber        intercept mouse events to clients when num lock 
123                           or scroll lock are on [default=yes]],
124   if test x$enableval = "xno"; then
125     AC_MSG_RESULT([no])
126     CLOBBER="-DNOCLOBBER" 
127   else
128     AC_MSG_RESULT([yes]) 
129   fi,
130   AC_MSG_RESULT([no])
131 )
132 AC_SUBST(CLOBBER)
133
134 dnl Check whether to include debugging code
135 DEBUG=""
136 AC_MSG_CHECKING([whether to include verbose debugging code])
137 AC_ARG_ENABLE(debug,
138   [  --enable-debug          include verbose debugging code [default=no]],
139   if test x$enableval = "xyes"; then
140     AC_MSG_RESULT([yes])
141     DEBUG="-DDEBUG -Wall -W"
142   else
143     AC_MSG_RESULT([no])
144   fi,
145   AC_MSG_RESULT([no])
146 )
147 AC_SUBST(DEBUG)
148
149 dnl Check whether to include natural language support (i18n)
150 NLS=""
151 AC_MSG_CHECKING([whether to include NLS support])
152 AC_ARG_ENABLE(nls,
153   [  --enable-nls            include natural language support [default=yes]],
154   if test x$enableval = "xyes"; then
155     AC_MSG_RESULT([yes])
156     NLS="-DNLS"
157   else
158     AC_MSG_RESULT([no])
159   fi,
160   AC_MSG_RESULT([yes])
161   NLS="-DNLS"
162 )
163 AC_SUBST(NLS)
164
165 AC_CHECK_LIB(xpg4, setlocale, LIBS="$LIBS -lxpg4")
166
167 AC_CHECK_PROGS(gencat_cmd, gencat)
168 if test x$gencat_cmd = "x"; then
169   NLS=""
170 fi
171
172
173 dnl Check for new timed pixmap cache
174 TIMEDCACHE=""
175 AC_MSG_CHECKING([whether to use the new timed pixmap cache])
176 AC_ARG_ENABLE(
177   timed-cache,
178 [  --enable-timed-cache    use new timed pixmap cache [default=yes]],
179   if test x$enableval = "xyes"; then
180     AC_MSG_RESULT([yes])
181     TIMEDCACHE="-DTIMEDCACHE"
182   else
183     AC_MSG_RESULT([no])
184   fi,
185   AC_MSG_RESULT([yes])
186   TIMEDCACHE="-DTIMEDCACHE"
187 )
188 AC_SUBST(TIMEDCACHE)
189
190 dnl Determine the return type of signal handlers
191 AC_TYPE_SIGNAL
192
193 dnl Determine if maintainer portions of the Makefiles should be included.
194 AM_MAINTAINER_MODE
195
196 dnl Print results
197 AC_MSG_RESULT([])
198 AC_MSG_RESULT([ $PACKAGE version $VERSION configured successfully.])
199 AC_MSG_RESULT([])
200 AC_MSG_RESULT([Using '$prefix' for installation.])
201 AC_MSG_RESULT([Using '$CXX' for C++ compiler.])
202 AC_MSG_RESULT([Building with '$CXXFLAGS' for C++ compiler flags.])
203 AC_MSG_RESULT([Building with '$LIBS' for linker flags.])
204 AC_MSG_RESULT([])
205
206 dnl Output files
207 AM_CONFIG_HEADER(config.h)
208 AC_OUTPUT(Makefile
209 src/Makefile
210 util/Makefile
211 data/Makefile
212 data/styles/Makefile
213 doc/Makefile
214 nls/Makefile
215 nls/C/Makefile
216 nls/da_DK/Makefile
217 nls/de_DE/Makefile
218 nls/es_ES/Makefile
219 nls/et_EE/Makefile
220 nls/fr_FR/Makefile
221 nls/hu_HU/Makefile
222 nls/it_IT/Makefile
223 nls/ja_JP/Makefile
224 nls/nl_NL/Makefile
225 nls/pt_BR/Makefile
226 nls/ru_RU/Makefile
227 nls/sl_SI/Makefile
228 nls/sv_SE/Makefile
229 nls/tr_TR/Makefile
230 nls/uk_UA/Makefile
231 nls/zh_CN/Makefile
232 nls/zh_TW/Makefile
233 version.h)