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