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