Replaced the global text_object array and count with a text_object_list
[monky] / configure.ac.in
1 dnl $Id$
2
3 dnl major, minor and micro version macros.
4 m4_define([conky_version_major], [1])
5 m4_define([conky_version_minor], [5])
6 m4_define([conky_version_micro], [2])
7 m4_define([conky_version_tag], [pre]) dnl [] for releases
8 m4_define([conky_version_revision],[_pre@REVISION@])
9 m4_define([conky_version],
10     [conky_version_major().conky_version_minor().conky_version_micro()ifelse(
11       conky_version_tag(), [pre],
12       [conky_version_revision()],
13       [ifelse(conky_version_tag(), [], [], [conky_version_tag()])])])
14
15 AC_INIT([Conky], [conky_version()], [brenden1@users.sourceforge.net])
16
17 AM_INIT_AUTOMAKE(conky, conky_version())
18 AM_CONFIG_HEADER(src/config.h)
19
20 dnl prevent libtool setting LTCFLAGS to default of -g -O2 when CFLAGS unset.
21 dnl libtool must be deleted with make distclean to see this fix.
22 if test x"$CFLAGS" = x""; then
23   AC_SUBST(CFLAGS, [ ])
24 fi
25
26 dnl
27 dnl Tools
28 dnl
29 AC_PROG_CC
30 AC_PROG_LD
31 AC_PROG_INSTALL
32 AC_PROG_LIBTOOL
33
34 AC_CHECK_PROG(HAVE_PKGCONFIG, pkg-config, yes, no)
35 if test x"$HAVE_PKGCONFIG" = x"no"; then
36   AC_MSG_ERROR([pkg-config is required!])
37 fi
38 PKG_PROG_PKG_CONFIG([0.19])
39
40 AC_CONFIG_FILES(
41   Makefile
42   data/Makefile
43   doc/Makefile
44   src/Makefile
45   src/build.h
46   )
47
48 uname=`uname`
49
50 case $uname in
51   Linux*)
52     WANT_SYSINFO=yes
53     ;;
54   FreeBSD*|GNU/kFreeBSD*)
55     WANT_KVM=yes
56     WANT_DEVSTAT=yes
57     ;;
58 #  NetBSD*)
59 #    WANT_KVM=yes
60 #    WANT_OSSLIB=yes
61 #    ;;
62
63   OpenBSD*)
64     WANT_KVM=yes
65     WANT_OSSLIB=yes
66     ;;
67
68 # Solaris doesn't work at all right now
69 #  SunOS*)
70 #    WANT_KSTAT=yes
71 #    ;;
72
73   *)
74     echo "Your operating system $uname isn't supported"
75     echo "Feel free to help. :P"
76     exit 1
77     ;;
78 esac
79
80 AM_CONDITIONAL(BUILD_LINUX, test x$uname = xLinux)
81 #AM_CONDITIONAL(BUILD_SOLARIS, test x$uname = xSunOS)
82 AM_CONDITIONAL(BUILD_FREEBSD, test x$uname = xFreeBSD -o x$uname = xGNU/kFreeBSD)
83 #AM_CONDITIONAL(BUILD_NETBSD, test x$uname = xNetBSD)
84 AM_CONDITIONAL(BUILD_OPENBSD, test x$uname = xOpenBSD)
85
86 BUILD_DATE=$(LANG=en_US LC_ALL=en_US LOCALE=en_US date)
87 BUILD_ARCH="$(uname -sr) ($(uname -m))"
88 AC_SUBST(BUILD_DATE)
89 AC_SUBST(BUILD_ARCH)
90
91
92 dnl
93 dnl OWN_WINDOW option
94 dnl
95
96 AC_ARG_ENABLE([own_window],
97               AC_HELP_STRING([--disable-own-window],
98                              [disable if you do not want support for creating own window @<:@default=yes@:>@]),
99               [dah="$enableval"], [dah=yes])
100
101 if test $dah != "no"; then
102   AC_DEFINE(OWN_WINDOW, 1, [Define if you want support for window creating])
103 fi
104
105
106 dnl
107 dnl Audacious Media Player
108 dnl
109
110 AC_ARG_ENABLE([audacious],
111               AC_HELP_STRING([--enable-audacious=[[yes|no|legacy]]],
112                              [enable audacious player support @<:@default=no@:>@]),
113               [want_audacious="$enableval"], [want_audacious=no])
114
115 AM_CONDITIONAL(BUILD_AUDACIOUS, test x$want_audacious = xyes -o x$want_audacious = xlegacy)
116 if test x$want_audacious = xyes; then
117       PKG_CHECK_MODULES([Audacious], [audacious >= 1.4.0 dbus-glib-1 glib-2.0 gobject-2.0])
118       CFLAGS="$CFLAGS $Audacious_CFLAGS"
119       LIBS="$LIBS $Audacious_LIBS"
120       save_CPPFLAGS="$CPPFLAGS"
121       CPPFLAGS="$Audacious_CFLAGS -I`pkg-config --variable=audacious_include_dir audacious`/audacious"
122       AC_CHECK_HEADERS([audacious/audctrl.h audacious/dbus.h glib.h glib-object.h],
123                        [], AC_MSG_ERROR([required header(s) not found]))
124       CPPFLAGS="$save_CPPFLAGS"
125       AC_DEFINE(AUDACIOUS, 1, [Define for Audacious support])
126 else if test x$want_audacious = xlegacy; then
127       PKG_CHECK_MODULES([Audacious], [audacious < 1.4.0 glib-2.0])
128       CFLAGS="$CFLAGS $Audacious_CFLAGS"
129       LIBS="$LIBS $Audacious_LIBS"
130       save_CPPFLAGS="$CPPFLAGS"
131       CPPFLAGS="$Audacious_CFLAGS -I`pkg-config --variable=audacious_include_dir audacious`/audacious"
132       AC_CHECK_HEADERS([audacious/beepctrl.h glib.h], [], AC_MSG_ERROR([required  header(s) not found]))
133       CPPFLAGS="$save_CPPFLAGS"
134       AC_DEFINE(AUDACIOUS, 1, [Define for Audacious support])
135       AC_DEFINE(AUDACIOUS_LEGACY, 1, [Define for Audacious Legacy support])
136       fi
137 fi
138
139
140 dnl
141 dnl BMPx
142 dnl
143
144 AC_ARG_ENABLE([bmpx],
145               AC_HELP_STRING([--enable-bmpx], [enable if you want BMPx support @<:@default=no@:>@]),
146               [want_bmpx="$enableval"], [want_bmpx=no])
147
148 AM_CONDITIONAL(BUILD_BMPX, test x$want_bmpx = xyes)
149 if test x$want_bmpx = xyes; then
150   PKG_CHECK_MODULES([BMPx], [bmp-2.0 >= 0.14.0])
151   CFLAGS="$CFLAGS $BMPx_CFLAGS"
152   LIBS="$LIBS $BMPx_LIBS"
153   AC_DEFINE(BMPX, 1, [Define if you want BMPx support])
154 fi
155
156
157 dnl
158 dnl Hddtemp
159 dnl
160
161 AC_ARG_ENABLE([hddtemp],
162               AC_HELP_STRING([--disable-hddtemp],
163                              [disable if you do not want hddtemp support @<:@default=yes@:>@]),
164               [want_hddtemp="$enableval"], [want_hddtemp=yes])
165
166 AM_CONDITIONAL(BUILD_HDDTEMP, test x$want_hddtemp = xyes)
167 if test x$want_hddtemp = xyes; then
168   if test x"$uname" != xLinux; then
169       AC_MSG_NOTICE([hddtemp not supported on $uname... disabling])
170       want_hddtemp=no
171   else
172       AC_DEFINE(HDDTEMP, 1, [Define if you want hddtemp support])
173   fi
174 fi
175
176 dnl
177 dnl MPD
178 dnl
179
180 AC_ARG_ENABLE([mpd],
181               AC_HELP_STRING([--disable-mpd], [disable if you do not want MPD support @<:@default=yes@:>@]),
182               [want_mpd="$enableval"], [want_mpd=yes])
183
184 AM_CONDITIONAL(BUILD_MPD, test x$want_mpd = xyes)
185 if test x$want_mpd = xyes; then
186   AC_DEFINE(MPD, 1, [Define if you want MPD support])
187 fi
188
189 dnl
190 dnl XMMS2
191 dnl
192
193 AC_ARG_ENABLE([xmms2],
194               AC_HELP_STRING([--enable-xmms2], [enable if you want XMMS2 support @<:@default=no@:>@]),
195               [want_xmms2="$enableval"], [want_xmms2=no])
196
197 AM_CONDITIONAL(BUILD_XMMS2, test x$want_xmms2 = xyes)
198 if test x$want_xmms2 = xyes; then
199   PKG_CHECK_MODULES([XMMS2], [xmms2-client])
200     CFLAGS="$CFLAGS $XMMS2_CFLAGS"
201     LIBS="$LIBS $XMMS2_LIBS"
202     AC_DEFINE(XMMS2, 1, [Define if you want XMMS2 support])
203 fi
204
205 dnl
206 dnl RSS
207 dnl
208
209 AC_ARG_ENABLE([rss],
210               AC_HELP_STRING([--enable-rss], [enable if you want rss support @<:@default=no@:>@]),
211               [want_rss="$enableval"], [want_rss=no])
212 #
213 AM_CONDITIONAL(BUILD_RSS, test x$want_rss = xyes)
214 if test x$want_rss = xyes; then
215         WANT_GLIB=yes
216         PKG_CHECK_MODULES([libxml2], libxml-2.0)
217         PKG_CHECK_MODULES([libcurl], libcurl)
218         CFLAGS="$CFLAGS $libxml2_CFLAGS $libcurl_CFLAGS"
219         LIBS="$LIBS $libxml2_LIBS $libcurl_LIBS"
220         AC_DEFINE(RSS, 1, [Define if you want rss support])
221 fi
222
223 dnl
224 dnl SMAPI
225 dnl
226
227 AC_ARG_ENABLE([smapi],
228               AC_HELP_STRING([--enable-smapi], [enable if you want smapi support @<:@default=no@:>@]),
229               [want_smapi="$enableval"], [want_smapi=no])
230
231 AM_CONDITIONAL(BUILD_SMAPI, test x$want_smapi = xyes)
232 if test x$want_smapi = xyes; then
233         AC_DEFINE(SMAPI, 1, [Define if you want smapi support])
234 fi
235
236 dnl
237 dnl Wireless extensions
238 dnl
239
240 AC_ARG_ENABLE([wlan],
241               AC_HELP_STRING([--enable-wlan], [enable if you want wireless support @<:@default=no@:>@]),
242               [want_wlan="$enableval"], [want_wlan=no])
243
244 AM_CONDITIONAL(BUILD_WLAN, test x$want_wlan = xyes)
245 if test x$want_wlan = xyes; then
246   AC_CHECK_HEADERS([iwlib.h], [], AC_MSG_ERROR([iwlib.h header not found]))
247   AC_CHECK_LIB([iw], [iw_sockets_open], [LIBS="$LIBS -liw"], AC_MSG_ERROR([iw_sockets_open not found]))
248         AC_DEFINE(HAVE_IWLIB, 1, [Define if you want wireless support])
249 fi
250
251 dnl
252 dnl NVIDIA libXNVCtrl support
253 dnl
254
255 AC_ARG_ENABLE([nvidia],
256                 AC_HELP_STRING([--enable-nvidia], [enable if you want nvidia support @<:@default=no@:>@]),
257                 [want_nvidia="$enableval"], [want_nvidia=no])
258 AM_CONDITIONAL(BUILD_NVIDIA, test x$want_nvidia = xyes)
259 if test x$want_nvidia = xyes; then
260         AC_CHECK_HEADERS([NVCtrl/NVCtrl.h], [], AC_MSG_ERROR([NVCtrl/NVCtrl.h header not found]))
261 dnl AC_CHECK_LIB([XNVCtrl], [XNVCTRLQueryVersion], [] ,[AC_MSG_ERROR([grrr])] )
262 dnl AC_CHECK_LIB([XNVCtrl], [XNVCTRLCheckTargetData], [], [AC_MSG_ERROR([grr])])
263 dnl ## am I Stupid ??
264 dnl ## it won't find the lib for some reason!?
265         LIBS="$LIBS -lXNVCtrl"
266                 AC_DEFINE(NVIDIA, 1, [Define if you want nvidia support])
267 fi
268
269 dnl
270 dnl IMLIB2
271 dnl
272
273 dnl --commented out until brenden finishes it --
274 dnl AC_ARG_ENABLE([imlib2],
275 dnl    AC_HELP_STRING([--enable-imlib2], [enable if you want Imlib2 support [[default=no]]]),
276 dnl    [want_imlib2="$enableval"], [want_imlib2=no])
277 dnl
278 dnl AM_CONDITIONAL(BUILD_IMLIB2, test x$want_imlib2 = xyes)
279 dnl if test x$want_imlib2 = xyes; then
280 dnl PKG_CHECK_MODULES([Imlib2], [imlib2])
281 dnl CFLAGS="$CFLAGS $Imlib2_CFLAGS"
282 dnl LIBS="$LIBS $Imlib2_LIBS"
283 dnl AC_DEFINE(IMLIB2, 1, [Define if you want Imlib2 support])
284 dnl fi
285
286
287 dnl
288 dnl PORT_MONITORS
289 dnl
290
291 AC_ARG_ENABLE([portmon],
292               AC_HELP_STRING([--disable-portmon],
293                              [disable if you do not want tcp (ip4) port monitoring @<:@default=yes@:>@]),
294               [want_portmon="$enableval"], [want_portmon=yes])
295
296 if test x"$want_portmon" = xyes; then
297   if test x"$uname" != xLinux; then
298       AC_MSG_NOTICE([port monitors not supported on $uname... disabling])
299       want_portmon=no
300   else
301         AC_CHECK_HEADERS([netdb.h netinet/in.h netinet/tcp.h sys/socket.h arpa/inet.h], [],
302            [PORT_MONITORS_MISSING=yes])
303         if test x"$PORT_MONITORS_MISSING" = xyes; then
304               AC_MSG_ERROR([missing a needed network header for port monitoring])
305         fi
306         WANT_GLIB=yes
307         AC_DEFINE(TCP_PORT_MONITOR, 1, [Define if you want tcp port monitoring support])
308   fi
309 fi
310 AM_CONDITIONAL(BUILD_PORT_MONITORS, test x"$want_portmon" = xyes)
311
312
313 dnl
314 dnl ICONV
315 dnl
316
317 AM_ICONV
318 if test "$am_cv_func_iconv" != yes; then
319   AC_MSG_WARN([Could not find libiconv])
320 else
321   LIBS="$LIBS $LIBICONV"
322 fi
323
324 dnl
325 dnl X11
326 dnl
327
328 AC_ARG_ENABLE([x11],
329               AC_HELP_STRING([--disable-x11], [disable if you do not want X11 support @<:@default=yes@:>@]),
330               [want_x11="$enableval"], [want_x11=yes])
331
332 AM_CONDITIONAL(BUILD_X11, test x$want_x11 = xyes)
333 if test "x$want_x11" = "xyes"; then
334     if $PKG_CONFIG --exists x11; then
335       PKG_CHECK_MODULES([X11], [x11])
336       CFLAGS="$CFLAGS $X11_CFLAGS"
337       LIBS="$LIBS $X11_LIBS"
338     else
339       dnl non-modular X11 installations
340       AC_PATH_X
341       AC_PATH_XTRA
342       CFLAGS="$CFLAGS $X_CFLAGS"
343       LIBS="$LIBS $X_LIBS"
344       LDFLAGS="$LDFLAGS $LIBS $X_PRE_LIBS"
345       if test "x$no_x" = "xyes"; then
346         AC_MSG_ERROR([Can't locate your X11 installation])
347       fi
348       AC_CHECK_LIB([X11], [XOpenDisplay], [], AC_MSG_ERROR([Could not find XOpenDisplay in -lX11]))
349     fi
350     AC_DEFINE(X11, 1, [Define if you want to use X11])
351 fi
352
353
354 dnl
355 dnl Xext Double-buffering Extension
356 dnl
357
358 AC_ARG_ENABLE([double_buffer],
359               AC_HELP_STRING([--disable-double-buffer],
360                              [disable for no Xdbe double-buffering support @<:@default=yes@:>@]),
361               [want_double_buffer="$enableval"], [want_double_buffer=yes])
362
363 if test "x$want_double_buffer" = "xyes"; then
364     if test "x$want_x11" != "xyes"; then
365       dnl silently disable if no x11
366       want_double_buffer=no
367     else
368       if $PKG_CONFIG --exists xext; then
369         PKG_CHECK_MODULES([Xext],[xext])
370         CFLAGS="$CFLAGS $Xext_CFLAGS"
371         LIBS="$LIBS $Xext_LIBS"
372       else
373         dnl non-modular X11 installation
374         AC_CHECK_LIB([Xext], [XdbeQueryExtension], [LIBS="$LIBS -lXext"],
375                     AC_MSG_ERROR([Could not find XdbeQueryExtension in -lXext]))
376       fi
377       AC_DEFINE(HAVE_XDBE, 1, [Define for X11 double-buffering])
378     fi
379 fi
380
381
382 dnl
383 dnl Xdamage Extension
384 dnl
385
386 AC_ARG_ENABLE([xdamage],
387               AC_HELP_STRING([--disable-xdamage],
388                              [disable if you do not want Xdamage support @<:@default=yes@:>@]),
389               [want_xdamage="$enableval"], [want_xdamage=yes])
390
391 if test "x$want_xdamage" = "xyes"; then
392     if test "x$want_x11" != "xyes"; then
393       dnl silently disable if no x11
394       want_xdamage=no
395     else
396       if $PKG_CONFIG --exists xdamage; then
397         PKG_CHECK_MODULES([XDamage],[xdamage])
398         CFLAGS="$CFLAGS $XDamage_CFLAGS"
399         LIBS="$LIBS $XDamage_LIBS"
400       else
401         dnl non-modular X11 installation
402         AC_CHECK_LIB([Xdamage], [XDamageQueryExtension], [LIBS="$LIBS -lXdamage"],
403                      AC_MSG_ERROR([Could not find XDamageQueryExtension in -lXdamage]))
404       fi
405       AC_DEFINE(HAVE_XDAMAGE, 1, [Define for X11 Xdamage extension])
406     fi
407 fi
408
409
410 dnl
411 dnl Xft
412 dnl
413
414 AC_ARG_ENABLE([xft],
415               AC_HELP_STRING([--disable-xft], [disable if you do not want to use Xft @<:@default=yes@:>@]),
416               [want_xft="$enableval"], [want_xft=yes])
417
418 if test x$want_xft = "xyes"; then
419     if test "x$want_x11" != "xyes"; then
420       dnl silently disable if no x11
421       want_xft=no
422     else
423       PKG_CHECK_MODULES([Xft], [xft])
424       CFLAGS="$CFLAGS $Xft_CFLAGS"
425       LIBS="$LIBS $Xft_LIBS"
426       AC_DEFINE(XFT, 1, [Define for Xft support])
427     fi
428 fi
429
430 dnl
431 dnl GLIB
432 dnl
433
434 if test x$WANT_GLIB = xyes; then
435         PKG_CHECK_MODULES([GLib2], [glib-2.0])
436         CFLAGS="$CFLAGS $GLib2_CFLAGS"
437         LIBS="$LIBS $GLib2_LIBS"
438 fi
439
440 dnl
441 dnl KVM
442 dnl
443
444 if test x$WANT_KVM = xyes; then
445   AC_CHECK_LIB(kvm, kvm_open,
446     LIBS="$LIBS -lkvm",
447   AC_MSG_ERROR([Could not find kvm_open in -lkvm.])
448   )
449 fi
450
451 dnl
452 dnl devstat
453 dnl
454
455 if test x$WANT_DEVSTAT = xyes; then
456   AC_CHECK_LIB(devstat, devstat_getversion,
457          LIBS="$LIBS -ldevstat",
458          AC_MSG_ERROR([Cound not find devstat_getversion in -ldevstat.])
459   )
460 fi
461
462 dnl
463 dnl OSSLIB for NetBSD/OpenBSD
464 dnl
465
466 if test x$WANT_OSSLIB = xyes; then
467     AC_CHECK_LIB(ossaudio, _oss_ioctl,
468   LIBS="$LIBS -lossaudio",
469   AC_MSG_ERROR([Could not find oss_ioctl in -lossaudio.])
470     )
471 fi
472
473 dnl
474 dnl Some headers
475 dnl
476
477 AC_CHECK_HEADERS([signal.h unistd.h sys/utsname.h sys/stat.h linux/soundcard.h dirent.h mcheck.h \
478       sys/statfs.h sys/param.h pthread.h assert.h errno.h time.h])
479 AC_CHECK_HEADERS([sys/mount.h], [], [],
480      [#ifdef HAVE_SYS_PARAM_H
481       #include <sys/param.h>
482       #endif
483       ])
484
485 AC_DEFINE([_GNU_SOURCE], [], [Define for GNU source and extensions])
486
487 dnl
488 dnl Some functions
489 dnl
490
491 AC_CHECK_FUNCS([calloc malloc free popen sysinfo getloadavg memrchr strndup gethostbyname_r])
492 AC_SEARCH_LIBS(clock_gettime, [rt],
493                [AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define if you have clock_gettime()])],
494                [AC_CHECK_FUNCS([gettimeofday], [], [AC_MSG_ERROR([gettimeofday() not available!])])], [])
495
496 dnl
497 dnl Structure checks
498 dnl
499
500 AC_CHECK_MEMBER([struct statfs.f_fstypename],
501                  [AC_DEFINE(HAVE_STRUCT_STATFS_F_FSTYPENAME, 1, [Define if struct statfs has the f_fstypename member])],
502                  [],
503                  [#include <sys/statfs.h>])
504
505 dnl
506 dnl Check for zlib
507 dnl
508
509 AC_CHECK_HEADER(zlib.h,
510                 [],
511                 [AC_MSG_ERROR([zlib is missing; please install the headers first])])
512
513
514 dnl
515 dnl Check doc stuff
516 dnl
517
518 AC_CHECK_PROGS(db2x_xsltproc_cmd, db2x_xsltproc)
519 AC_CHECK_PROGS(db2x_manxml_cmd, db2x_manxml)
520 AC_CHECK_PROGS(xsltproc_cmd, xsltproc)
521 if test x$db2x_xsltproc_cmd = "x" -o x$xsltproc_cmd = "x"; then
522   AM_CONDITIONAL(HAVE_DOCSTUFF, false)
523 else
524   AM_CONDITIONAL(HAVE_DOCSTUFF, true)
525 fi
526
527
528 dnl
529 dnl kstat in Solaris
530 dnl
531
532 if test x$WANT_KSTAT = xyes; then
533   dah=no
534   AC_CHECK_LIB([kstat], [kstat_open], [dah=yes], [])
535
536   if test x$dah = xyes; then
537     AC_DEFINE(HAVE_KSTAT, 1, [Define if you have kstat (Solaris)])
538     LDFLAGS="$LDFLAGS -lkstat"
539   fi
540 fi
541
542 AC_DEFUN([AM_LANGINFO_CODESET],
543 [
544   AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset,
545     [AC_TRY_LINK([#include <langinfo.h>],
546       [char* cs = nl_langinfo(CODESET);],
547       am_cv_langinfo_codeset=yes,
548       am_cv_langinfo_codeset=no)
549     ])
550   if test $am_cv_langinfo_codeset = yes; then
551     AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
552       [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
553   fi
554 ])
555
556
557 dnl ************************
558 dnl * Linker optimizations *
559 dnl ************************
560 AC_MSG_CHECKING([if $LD accepts -O1])
561 case `$LD -O1 -v 2>&1 </dev/null` in
562 *GNU* | *BSD*)
563   LDFLAGS="$LDFLAGS -Wl,-O1"
564   AC_MSG_RESULT([yes])
565   ;;
566 *)
567   AC_MSG_RESULT([no])
568   ;;
569 esac
570
571
572 dnl
573 dnl Da.
574 dnl
575
576 CFLAGS="$CFLAGS -Wall -W"
577
578 dnl
579 dnl debug
580 dnl
581
582 AC_ARG_ENABLE([debug],
583               AC_HELP_STRING([--enable-debug], [compile with debug symbols @<:@default=no@:>@]),
584               [want_debug="$enableval"], [want_debug=no])
585
586 if test "x$want_debug" = "xyes" -a $ac_cv_c_compiler_gnu != no; then
587   CFLAGS="$CFLAGS -g3 -Werror"
588   AC_DEFINE([DEBUG], [], [Define for debugging])
589 fi
590
591 dnl
592 dnl testing
593 dnl
594
595 AC_ARG_ENABLE([testing],
596               AC_HELP_STRING([--enable-testing], [use strict compiler flags for testing @<:@default=no@:>@]),
597               [want_testing="$enableval"], [want_testing=no])
598
599 if test "x$want_testing" = "xyes" -a $ac_cv_c_compiler_gnu != no; then
600   if test "x$want_debug" = "xyes"; then
601     CFLAGS="$CFLAGS -Wextra -Wunused -Wdeclaration-after-statement -Wundef -Wendif-labels -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wstrict-prototypes -Wold-style-definition -Winline -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -std=c99 -pedantic"
602     AC_DEFINE([TESTING], [], [Define for testing (enables strict compiler flags)])
603   else
604     CFLAGS="$CFLAGS -g3 -Werror -Wextra -Wunused -Wdeclaration-after-statement -Wundef -Wendif-labels -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wstrict-prototypes -Wold-style-definition -Winline -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -std=c99 -pedantic"
605     AC_DEFINE([TESTING], [], [Define for testing (enables strict compiler flags)])
606   fi
607 fi
608
609 AC_SUBST(CFLAGS)
610 AC_SUBST(X11_LIBS)
611
612 AC_OUTPUT
613
614 dnl
615 dnl Print summary
616 dnl
617 cat << EOF
618
619 $PACKAGE $VERSION configured successfully:
620
621  Installing into:   $prefix
622  System config dir: $sysconfdir
623  C compiler flags:  $CFLAGS
624  Linker flags:      $LDFLAGS
625  Libraries:         $LIBS
626
627  * X11:
628   X11 support:      $want_x11
629   XDamage support:  $want_xdamage
630   XDBE support:     $want_double_buffer
631   Xft support:      $want_xft
632
633  * Music detection:
634   Audacious:        $want_audacious
635   BMPx:             $want_bmpx
636   MPD:              $want_mpd
637   XMMS2:            $want_xmms2
638
639  * General:
640   hddtemp:          $want_hddtemp
641   portmon:          $want_portmon
642   RSS:              $want_rss
643   wireless:         $want_wlan
644   SMAPI:            $want_smapi
645   nvidia:           $want_nvidia
646 EOF