]> Dogcows Code - chaz/openbox/blob - configure.in
sync with the 2.0 branch
[chaz/openbox] / 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.1.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 AC_MSG_CHECKING(for GCC)
49 if test x$GCC = "xyes"; then
50 AC_MSG_RESULT([yes])
51 CXXFLAGS="${CXXFLAGS} -Wall -W"
52 else
53 AC_MSG_RESULT([no, trying other compilers])
54 AC_MSG_CHECKING(for MIPSpro)
55 mips_pro_ver=`$CC -version 2>&1 | grep -i mipspro | cut -f4 -d ' '`
56 if test "x$mips_pro_ver" = "x"; then
57 AC_MSG_RESULT([no])
58 else
59 AC_MSG_RESULT([yes, version $mips_pro_ver.])
60 AC_MSG_CHECKING(for -LANG:std in CXXFLAGS)
61 lang_std_not_set=`echo $CXXFLAGS | grep "\-LANG:std"`
62 if test "x$lang_std_not_set" = "x"; then
63 AC_MSG_RESULT([not set, setting.])
64 CXXFLAGS="${CXXFLAGS} -LANG:std"
65 else
66 AC_MSG_RESULT([already set.])
67 fi
68 fi
69 fi
70
71 dnl Check for required functions in -lX11
72 AC_CHECK_LIB(X11, XOpenDisplay,
73 LIBS="$LIBS -lX11",
74 AC_MSG_ERROR([Could not find XOpenDisplay in -lX11.])
75 )
76
77 LIBS="$LIBS $X_EXTRA_LIBS"
78
79 dnl Check for XShape extension support and proper library files.
80 SHAPE=""
81 AC_MSG_CHECKING([whether to build support for the XShape extension])
82 AC_ARG_ENABLE(
83 shape, [ --enable-shape enable support of the XShape extension [default=yes]])
84
85 : ${enableval="yes"}
86 if test x$enableval = "xyes"; then
87 AC_MSG_RESULT([yes])
88 AC_CHECK_LIB(Xext, XShapeCombineShape,
89 AC_MSG_CHECKING([for X11/extensions/shape.h])
90 AC_TRY_LINK(
91 #include <X11/Xlib.h>
92 #include <X11/Xutil.h>
93 #include <X11/extensions/shape.h>
94 , long foo = ShapeSet,
95 AC_MSG_RESULT([yes])
96 SHAPE="yes",
97 AC_MSG_RESULT([no])
98 )
99 )
100 else
101 AC_MSG_RESULT([no])
102 fi
103 if test x$SHAPE = "xyes"; then
104 LIBS="$LIBS -lXext"
105 AC_DEFINE(SHAPE,1,Enable support of the XShape extension)
106 fi
107
108 dnl Check for Xinerama extension support and proper library files.
109 XINERAMA=""
110 AC_MSG_CHECKING([whether to build support for the Xinerama extension])
111 AC_ARG_ENABLE(
112 xinerama, [ --enable-xinerama enable support of the Xinerama extension [default=no]],
113 if test x$enableval = "xyes"; then
114 AC_MSG_RESULT([yes])
115
116 AC_CHECK_LIB(Xinerama, XineramaQueryExtension,
117 AC_MSG_CHECKING([for X11/extensions/Xinerama.h])
118 AC_TRY_LINK(
119 #include <X11/Xlib.h>
120 #include <X11/extensions/Xinerama.h>
121 , XineramaScreenInfo foo,
122 AC_MSG_RESULT([yes])
123 XINERAMA="yes"
124 LIBS="$LIBS -lXinerama",
125 AC_MSG_RESULT([no])
126 )
127 )
128
129 else
130 AC_MSG_RESULT([no])
131 fi,
132 AC_MSG_RESULT([no])
133 )
134 if test x$XINERAMA = "xyes"; then
135 AC_DEFINE(XINERAMA,1,Enable support of the Xinerama extension)
136 fi
137
138 dnl Check for Xft extension support and proper library files.
139 XFT=""
140 AC_MSG_CHECKING([whether to build support for the Xft extension])
141 AC_ARG_ENABLE(
142 xft, [ --enable-xft enable support of the Xft extension [default=yes]])
143 : ${enableval="yes"}
144 if test x$enableval = "xyes"; then
145 AC_MSG_RESULT([yes])
146
147 AC_CHECK_LIB(Xft, XftFontOpenXlfd,
148 AC_MSG_CHECKING([for X11/Xft/Xft.h])
149 AC_TRY_LINK(
150 #include <X11/Xlib.h>
151 #include <X11/Xft/Xft.h>
152 , XftFont foo,
153 AC_MSG_RESULT([yes])
154 XFT="yes"
155 LIBS="$LIBS -lXft",
156 AC_MSG_RESULT([no])
157 )
158 )
159
160 else
161 AC_MSG_RESULT([no])
162 fi
163 if test x$XFT = "xyes"; then
164 AC_DEFINE(XFT,1,Enable support of the Xft extension)
165 fi
166
167 dnl Check for ordered 8bpp dithering
168 ORDEREDPSEUDO=""
169 AC_MSG_CHECKING([whether to include Pseudocolor ordered dithering code])
170 AC_ARG_ENABLE(ordered-pseudo,
171 [ --enable-ordered-pseudo include code for ordered pseudocolor (8bpp)
172 dithering [default=no]],
173 if test x$enableval = "xyes"; then
174 AC_MSG_RESULT([yes])
175 ORDEREDPSEUDO="yes"
176 else
177 AC_MSG_RESULT([no])
178 fi,
179 AC_MSG_RESULT([no])
180 )
181 if test x$ORDEREDPSEUDO = "xyes"; then
182 AC_DEFINE(ORDEREDPSEUDO,1,Enable pseudocolor ordered dithering)
183 fi
184
185 dnl Check whether to include debugging code
186 DEBUG=""
187 AC_MSG_CHECKING([whether to include verbose debugging code])
188 AC_ARG_ENABLE(debug,
189 [ --enable-debug include verbose debugging code [default=no]],
190 if test x$enableval = "xyes"; then
191 AC_MSG_RESULT([yes])
192 if test x$GCC = "xyes"; then
193 DEBUG="-DDEBUG -fno-inline -g"
194 else
195 DEBUG="-DDEBUG"
196 fi
197 else
198 AC_MSG_RESULT([no])
199 DEBUG="-DNDEBUG"
200 fi,
201 AC_MSG_RESULT([no])
202 DEBUG="-DNDEBUG"
203 )
204 AC_SUBST(DEBUG)
205
206 dnl Check whether to include natural language support (i18n)
207 NLS=""
208 AC_MSG_CHECKING([whether to include NLS support])
209 AC_ARG_ENABLE(nls,
210 [ --enable-nls include natural language support [default=yes]],
211 if test x$enableval = "xyes"; then
212 AC_MSG_RESULT([yes])
213 NLS="yes"
214 else
215 AC_MSG_RESULT([no])
216 fi,
217 AC_MSG_RESULT([yes])
218 NLS="yes"
219 )
220
221 AC_CHECK_LIB(xpg4, setlocale, LIBS="$LIBS -lxpg4")
222
223 AC_CHECK_PROGS(gencat_cmd, gencat)
224 if test x$gencat_cmd = "x"; then
225 NLS=""
226 fi
227
228 if test x$NLS = "xyes"; then
229 AC_DEFINE(NLS,1,Include natural language support)
230 AC_SUBST(NLS)
231 fi
232
233 dnl Check for new timed pixmap cache
234 TIMEDCACHE=""
235 AC_MSG_CHECKING([whether to use the timed pixmap cache])
236 AC_ARG_ENABLE(
237 timed-cache,
238 [ --enable-timed-cache use timed pixmap cache [default=yes]],
239 if test x$enableval = "xyes"; then
240 AC_MSG_RESULT([yes])
241 TIMEDCACHE="yes"
242 else
243 AC_MSG_RESULT([no])
244 fi,
245 AC_MSG_RESULT([yes])
246 TIMEDCACHE="yes"
247 )
248 if test x$TIMEDCACHE = "xyes"; then
249 AC_DEFINE(TIMEDCACHE,1,Use timed pixmap cache)
250 fi
251
252 dnl Determine the return type of signal handlers
253 AC_TYPE_SIGNAL
254
255 dnl Determine if maintainer portions of the Makefiles should be included.
256 AM_MAINTAINER_MODE
257
258 dnl Print results
259 AC_MSG_RESULT([])
260 AC_MSG_RESULT([ $PACKAGE version $VERSION configured successfully.])
261 AC_MSG_RESULT([])
262 AC_MSG_RESULT([Using '$prefix' for installation.])
263 AC_MSG_RESULT([Using '$CXX' for C++ compiler.])
264 AC_MSG_RESULT([Building with '$CXXFLAGS' for C++ compiler flags.])
265 AC_MSG_RESULT([Building with '$LIBS' for linker flags.])
266 AC_MSG_RESULT([])
267
268 dnl Output files
269 AM_CONFIG_HEADER(config.h)
270 AC_OUTPUT(Makefile
271 src/Makefile
272 util/Makefile
273 util/epist/Makefile
274 data/Makefile
275 data/styles/Makefile
276 doc/Makefile
277 nls/Makefile
278 nls/C/Makefile
279 nls/da_DK/Makefile
280 nls/de_DE/Makefile
281 nls/es_AR/Makefile
282 nls/es_ES/Makefile
283 nls/et_EE/Makefile
284 nls/fr_FR/Makefile
285 nls/hu_HU/Makefile
286 nls/it_IT/Makefile
287 nls/ja_JP/Makefile
288 nls/ko_KR/Makefile
289 nls/no_NO/Makefile
290 nls/pl_PL/Makefile
291 nls/nl_NL/Makefile
292 nls/pt_BR/Makefile
293 nls/ro_RO/Makefile
294 nls/ru_RU/Makefile
295 nls/sk_SK/Makefile
296 nls/sl_SI/Makefile
297 nls/sv_SE/Makefile
298 nls/tr_TR/Makefile
299 nls/uk_UA/Makefile
300 nls/zh_CN/Makefile
301 nls/zh_TW/Makefile
302 version.h)
This page took 0.044664 seconds and 4 git commands to generate.