-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
422 lines (367 loc) · 13.5 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
############################################################################
# GGWM autoconf.
############################################################################
AC_INIT([ggwm],[0.1.0],[scaramacai])
AC_PREREQ([2.72])
AC_CONFIG_SRCDIR([src])
AC_CONFIG_SRCDIR([po])
AC_CONFIG_HEADERS([config.h])
AC_LANG(C)
AC_PROG_CC
AC_PROG_CPP
AC_PROG_INSTALL
AC_PROG_MKDIR_P
PACKAGE=ggwm
############################################################################
# Check if we need _XOPEN_SOURCE
############################################################################
AC_MSG_CHECKING([if _XOPEN_SOURCE should be defined])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#define _XOPEN_SOURCE 600L
#include <unistd.h>
]])], [use_xopen_source="yes"], [use_xopen_source="no"])
AC_MSG_RESULT([$use_xopen_source])
if test $use_xopen_source = "yes"; then
AC_DEFINE(_XOPEN_SOURCE, 600L, [Define for single UNIX conformance])
# Needed for IRIX 6.2 so that struct timeval is declared.
AC_DEFINE(_XOPEN_SOURCE_EXTENDED, 1, [Define for timeval on IRIX 6.2])
# Needed for Solaris 2.5.1 so that struct timeval is declared.
AC_DEFINE(__EXTENSIONS__, 1, [Define for timeval on Solaris 2.5.1])
fi
############################################################################
# Check for X11
############################################################################
AC_PATH_X
if test ! "$no_x" = "yes" ; then
if test ! x"$x_libraries" = x ; then
LDFLAGS="$LDFLAGS -L$x_libraries"
fi
if test ! x"$x_includes" = x ; then
CFLAGS="$CFLAGS -I$x_includes"
fi
else
AC_MSG_ERROR([Could not find X11])
fi
AC_CHECK_LIB([X11], XOpenDisplay,
[ LDFLAGS="$LDFLAGS -lX11" ],
[ AC_MSG_ERROR([libX11 not found]) ])
AC_CHECK_LIB([X11], Xutf8TextPropertyToTextList,
[ AC_DEFINE(USE_XUTF8, 1, [Define to use Xutf8TextPropertyToTextList]) ],
[ AC_MSG_WARN([Xutf8TextPropertyToTextList not found in libX11]) ])
############################################################################
# Check for necessary include files.
############################################################################
AC_CHECK_HEADERS([stdarg.h stdio.h stdlib.h ctype.h], [],
[ AC_MSG_ERROR([one or more necessary header files not found]) ])
AC_CHECK_HEADERS([sys/select.h signal.h unistd.h time.h sys/wait.h sys/time.h])
AC_CHECK_HEADERS([langinfo.h iconv.h])
AC_CHECK_HEADERS([locale.h libintl.h])
AC_CHECK_HEADERS([X11/Xlib.h], [],
[ AC_MSG_ERROR([Xlib.h could not be found]) ],
[
#include <X11/X.h>
])
AC_CHECK_HEADERS([X11/Xutil.h X11/cursorfont.h X11/Xproto.h \
X11/Xatom.h X11/keysym.h X11/Xresource.h], [], [],
[
#include <X11/Xlib.h>
])
AC_CHECK_FUNCS([unsetenv putenv setlocale])
AC_FUNC_ALLOCA()
############################################################################
# Check for pkg-config.
############################################################################
AC_DEFUN([GGWM_PKGCONFIG_EXISTS],[AC_PATH_TOOL(PKGCONFIG,pkg-config)])
AC_DEFUN([GGWM_PKGCONFIG],
[
AC_REQUIRE([GGWM_PKGCONFIG_EXISTS])
if test "x$PKGCONFIG" != "x" ; then
AC_MSG_CHECKING([if pkg-config knows about $2])
if `$PKGCONFIG $2` ; then
$1="yes"
else
$1="no"
fi
AC_MSG_RESULT($$1)
else
$1="no"
fi
])
GGWM_PKGCONFIG([use_pkgconfig_xrender], [xrender])
GGWM_PKGCONFIG([use_pkgconfig_fribidi], [fribidi])
############################################################################
# Check if confirm dialogs should be used.
############################################################################
AC_ARG_ENABLE(confirm,
AS_HELP_STRING([--disable-confirm],[disable confirm dialogs]) )
if test "$enable_confirm" = "no" ; then
AC_DEFINE(DISABLE_CONFIRM, 1, [Define to disable confirm dialogs])
else
enable_confirm="yes"
fi
############################################################################
# Check if PNG support was requested.
############################################################################
AC_ARG_ENABLE(png,
AS_HELP_STRING([--disable-png],[disable PNG images]) )
if test "$enable_png" != "no" ; then
enable_png="yes"
AC_DEFINE(USE_PNG, 1, [Define to use PNG images])
fi
############################################################################
# Check if JPEG support was requested.
############################################################################
AC_ARG_ENABLE(jpeg,
AS_HELP_STRING([--disable-jpeg],[disable JPEG images]) )
if test "$enable_jpeg" != "no" ; then
enable_jpeg="yes"
AC_DEFINE(USE_JPEG, 1, [Define to use JPEG images])
fi
############################################################################
# Check if support for the XRENDER extension was requested and available.
# If XRENDER is available, automatically libschrift is used
############################################################################
AC_ARG_ENABLE(xrender,
AS_HELP_STRING([--disable-xrender],[disable XRender]) )
if test "$enable_xrender" != "no"; then
if test "$use_pkgconfig_xrender" = "yes" ; then
XRENDER_CFLAGS=`$PKGCONFIG --cflags xrender`
XRENDER_LDFLAGS=`$PKGCONFIG --libs xrender`
else
XRENDER_LDFLAGS="-lXrender"
fi
AC_CHECK_HEADERS([X11/extensions/Xrender.h], [],
[
enable_xrender="no";
AC_MSG_WARN([unable to use X11/extensions/Xrender.h])
], [
#include <X11/Xlib.h>
])
fi
if test "$enable_xrender" != "no" ; then
AC_CHECK_LIB(Xrender, XRenderComposite,
[ LDFLAGS="$LDFLAGS $XRENDER_LDFLAGS"
CFLAGS="$CFLAGS $XRENDER_CFLAGS"
enable_xrender="yes"
AC_DEFINE(USE_XRENDER, 1, [Define to enable the XRender extension]) ],
[ enable_xrender="no"
AC_MSG_WARN([unable to use the XRender extension]) ],
[ $XRENDER_LDFLAGS ])
fi
############################################################################
# Check if FriBidi support was requested and available.
############################################################################
AC_ARG_ENABLE(fribidi,
AS_HELP_STRING([--disable-fribidi],[disable bi-directional unicode support]) )
if test "$enable_fribidi" != "no" ; then
if test "$use_pkgconfig_fribidi" = "yes" ; then
FRIBIDI_CFLAGS=`$PKGCONFIG --cflags fribidi`
FRIBIDI_LDFLAGS=`$PKGCONFIG --libs fribidi`
enable_fribidi="yes"
elif which fribidi-config >/dev/null ; then
FRIBIDI_CFLAGS=`fribidi-config --cflags`
FRIBIDI_LDFLAGS=`fribidi-config --libs`
enable_fribidi="yes"
else
FRIBIDI_LDFLAGS="-lfribidi"
AC_CHECK_LIB(fribidi, fribidi_charset_to_unicode,
[ enable_fribidi="yes" ],
[ enable_fribidi="no"
AC_MSG_WARN([unable to use FriBidi]) ],
[ $FRIBIDI_LDFLAGS ])
fi
fi
if test "$enable_fribidi" = "yes" ; then
LDFLAGS="$LDFLAGS $FRIBIDI_LDFLAGS"
CFLAGS="$CFLAGS $FRIBIDI_CFLAGS"
AC_DEFINE(USE_FRIBIDI, 1, [Define to use FriBidi])
fi
############################################################################
# Check if XPM support was requested and available.
############################################################################
AC_ARG_ENABLE(xpm,
AS_HELP_STRING([--disable-xpm],[disable XPM images]) )
if test "$enable_xpm" != "no"; then
# We need to use the XPM libraries in Motif-2.1 on IRIX.
if test `uname` = "IRIX" ; then
CFLAGS="$CFLAGS -I/usr/Motif-2.1/include"
LDFLAGS="$LDFLAGS -L/usr/Motif-2.1/lib32"
fi
if test `uname` = "IRIX64" ; then
CFLAGS="$CFLAGS -I/usr/Motif-2.1/include"
LDFLAGS="$LDFLAGS -L/usr/Motif-2.1/lib64"
fi
AC_CHECK_HEADERS([X11/xpm.h], [],
[ enable_xpm="no";
AC_MSG_WARN([unable to use X11/xpm.h]) ],
[
#include <X11/X.h>
])
fi
if test "$enable_xpm" != "no"; then
AC_CHECK_DECL(XpmAllocColor, [],
[ enable_xpm="no"
AC_MSG_WARN([XPM library too old]) ],
[
#include <X11/xpm.h>
])
fi
if test "$enable_xpm" != "no"; then
AC_CHECK_LIB(Xpm, XpmReadFileToImage,
[ LDFLAGS="$LDFLAGS -lXpm";
enable_xpm="yes"
AC_DEFINE(USE_XPM, 1, [Define to enable XPM support]) ],
[ enable_xpm="no"
AC_MSG_WARN([unable to use libXpm]) ])
fi
############################################################################
# Check if XBM support was requested and available.
############################################################################
AC_ARG_ENABLE(xbm,
AS_HELP_STRING([--disable-xbm],[disable XBM images]) )
if test "$enable_xbm" != "no"; then
AC_CHECK_LIB(X11, XReadBitmapFileData,
[ enable_xbm="yes"
AC_DEFINE(USE_XBM, 1, [Define to enable XBM images]) ],
[ enable_xbm="no"
AC_MSG_WARN([unable to use XBM images]) ])
fi
############################################################################
# Check if support for the shape extension was requested and available.
############################################################################
AC_ARG_ENABLE(shape,
AS_HELP_STRING([--disable-shape],[disable use of the X shape extension]) )
if test "$enable_shape" != "no"; then
AC_CHECK_LIB(Xext, XShapeCombineRectangles,
[ LDFLAGS="$LDFLAGS -lXext"
enable_shape="yes"
AC_DEFINE(USE_SHAPE, 1, [Define to enable the X shape extension]) ],
[ enable_shape="no"
AC_MSG_WARN([unable to use the X shape extension]) ])
fi
############################################################################
# Check if support for Xmu was requested and available.
# Note that Xmu appears to be broken on IRIX (drawing rounded rectangles
# larger than 800 pixels in either direction causes problems).
############################################################################
AC_ARG_ENABLE(xmu,
AS_HELP_STRING([--disable-xmu],[disable Xmu support]),
[],
[ if test `uname` = "IRIX" -o `uname` = "IRIX64" ; then
AC_MSG_WARN([disabling Xmu (it is broken on IRIX)])
enable_xmu="no"
fi
])
if test "$enable_xmu" != "no"; then
AC_CHECK_LIB(Xmu, XmuDrawRoundedRectangle,
[ LDFLAGS="$LDFLAGS -lXmu"
enable_xmu="yes"
AC_DEFINE(USE_XMU, 1, [Define to use Xmu]) ],
[ enable_xmu="no"
AC_MSG_WARN([unable to use Xmu]) ])
fi
############################################################################
# Check if support for Xinerama was requested and available.
############################################################################
AC_ARG_ENABLE(xinerama,
AS_HELP_STRING([--disable-xinerama],[disable Xinerama support]) )
if test "$enable_xinerama" != "no"; then
AC_CHECK_LIB(Xinerama, XineramaQueryExtension,
[ LDFLAGS="$LDFLAGS -lXinerama"
enable_xinerama="yes"
AC_DEFINE(USE_XINERAMA, 1, [Define to enable Xinerama]) ],
[ enable_xinerama="no"
AC_MSG_WARN([unable to use Xinerama]) ])
fi
############################################################################
# Check if support for gettext was requested and available.
############################################################################
AM_ICONV
AM_GNU_GETTEXT([external])
AM_GNU_GETTEXT_VERSION([0.20])
LDFLAGS="$LDFLAGS $LIBINTL $LIBICONV"
############################################################################
# Check if debug mode was requested.
############################################################################
AC_ARG_ENABLE(debug,
AS_HELP_STRING([--enable-debug],[use this to debug GGWM]) )
if test "$enable_debug" = "yes"; then
AC_DEFINE(DEBUG, 1, [Define to debug GGWM])
CFLAGS="$CFLAGS -Wall -g -DDEBUG"
LDFLAGS="$LDFLAGS -g"
else
enable_debug="no"
fi
############################################################################
# Create the output files.
############################################################################
if test "$prefix" = "NONE" ; then
PREFIX="$ac_default_prefix"
prefix="$ac_default_prefix"
else
PREFIX="$prefix"
fi
if test "$exec_prefix" = "NONE" ; then
exec_prefix="$PREFIX"
fi
if test "$sysconfdir" = "" ; then
sysconfdir="$ac_default_sysconfdir"
fi
if test "$mandir" = "" ; then
mandir="$ac_default_mandir"
fi
if test "$datadir" = "" ; then
datadir="$ac_default_datadir"
fi
if test "$LOCALEDIR" = "" ; then
localedir=`eval echo \""$datadir"/locale\"`
localedir=`eval echo \""$localedir"\"`
CFLAGS="$CFLAGS -DLOCALEDIR=\\\"$localedir\\\""
fi
BINDIR=`eval echo \""$bindir"\"`
SYSCONF=`eval echo \""$sysconfdir"\"`
MANDIR=`eval echo \""$mandir"\"`
MANDIR=`eval echo \""$MANDIR"\"`
DATADIR=`eval echo \""$datadir"\"`
DATADIR=`eval echo \""$DATADIR"\"`
AC_DEFINE_UNQUOTED(SYSTEM_CONFIG, "$SYSCONF/system.jwmrc",
[default system configuration path])
AC_SUBST(CFLAGS)
AC_SUBST(LDFLAGS)
AC_SUBST(VERSION, "$PACKAGE_VERSION")
AC_SUBST(INSTVERSION, `echo $PACKAGE_VERSION | tr -d .`)
AC_SUBST(BINDIR, "$BINDIR")
AC_SUBST(MANDIR, "$MANDIR")
AC_SUBST(DATADIR, "$DATADIR")
AC_SUBST(DATE, `date -u -d "@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y-%m-%d`)
AC_SUBST(SYSCONF, "$SYSCONF")
AC_SUBST(PACKAGE, "$PACKAGE")
AC_CONFIG_FILES([po/Makefile.in
Makefile
src/Makefile
contrib/Makefile
jwm.1
])
AC_OUTPUT
############################################################################
# Display the status.
############################################################################
echo "Compiler: $CC"
echo "Compile flags: $CFLAGS"
echo "Link flags: $LDFLAGS"
echo
echo "Options"
echo
echo " Confirm: $enable_confirm"
echo " PNG: $enable_png"
echo " JPEG: $enable_jpeg"
echo " XBM: $enable_xbm"
echo " XPM: $enable_xpm"
echo " XFT: $enable_xft"
echo " XRender: $enable_xrender"
echo " FriBidi: $enable_fribidi"
echo " Shape: $enable_shape"
echo " Xmu: $enable_xmu"
echo " Xinerama: $enable_xinerama"
echo " Debug: $enable_debug"
echo