Inotify support.
[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], [7])
4 m4_define([conky_version_micro], [1])
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         want_config_output=no
59         ;;
60 #  NetBSD*)
61 #    WANT_KVM=yes
62 #    WANT_OSSLIB=yes
63 #    ;;
64
65   OpenBSD*)
66     WANT_KVM=yes
67     WANT_OSSLIB=yes
68     ;;
69
70 # Solaris doesn't work at all right now
71 #  SunOS*)
72 #    WANT_KSTAT=yes
73 #    ;;
74
75   *)
76     echo "Your operating system $uname isn't supported"
77     echo "Feel free to help. :P"
78     exit 1
79     ;;
80 esac
81
82 AM_CONDITIONAL(BUILD_LINUX, test x$uname = xLinux)
83 #AM_CONDITIONAL(BUILD_SOLARIS, test x$uname = xSunOS)
84 AM_CONDITIONAL(BUILD_FREEBSD, test x$uname = xFreeBSD -o x$uname = xGNU/kFreeBSD)
85 #AM_CONDITIONAL(BUILD_NETBSD, test x$uname = xNetBSD)
86 AM_CONDITIONAL(BUILD_OPENBSD, test x$uname = xOpenBSD)
87
88 BUILD_DATE=$(LANG=en_US LC_ALL=en_US LOCALE=en_US date)
89 BUILD_ARCH="$(uname -sr) ($(uname -m))"
90 AC_SUBST(BUILD_DATE)
91 AC_SUBST(BUILD_ARCH)
92
93
94 dnl
95 dnl BUILD_CONFIG_OUTPUT option
96 dnl
97
98 AC_ARG_ENABLE([config_output],
99               AC_HELP_STRING([--disable-config-output], [disable if you do not want conky to output a default config (with -C) Note: not available on FreeBSD @<:@default=yes@:>@]),
100               [want_config_output="$enableval"], [want_config_output=yes])
101
102 AM_CONDITIONAL(BUILD_CONFIG_OUTPUT, test x$want_config_output = xyes)
103 AM_CONDITIONAL(BUILD_FOR_FOPENCOOKIE, test x$want_config_output = xyes)
104 if test x$want_config_output = xyes; then
105   AC_DEFINE(CONFIG_OUTPUT, 1, [Define if you want conky to output a default config (with -C)])
106   AC_CHECK_FUNCS(fopencookie)
107 fi
108
109 dnl
110 dnl OWN_WINDOW option
111 dnl
112
113 AC_ARG_ENABLE([own_window],
114               AC_HELP_STRING([--disable-own-window],
115                              [disable if you do not want support for creating own window @<:@default=yes@:>@]),
116               [dah="$enableval"], [dah=yes])
117
118 if test $dah != "no"; then
119   AC_DEFINE(OWN_WINDOW, 1, [Define if you want support for window creating])
120 fi
121
122
123 dnl
124 dnl Audacious Media Player
125 dnl
126
127 AC_ARG_ENABLE([audacious],
128               AC_HELP_STRING([--enable-audacious=[[yes|no|legacy]]],
129                              [enable audacious player support @<:@default=no@:>@]),
130               [want_audacious="$enableval"], [want_audacious=no])
131
132 AM_CONDITIONAL(BUILD_AUDACIOUS, test x$want_audacious = xyes -o x$want_audacious = xlegacy)
133 if test x$want_audacious = xyes; then
134       PKG_CHECK_MODULES([Audacious], [audacious >= 1.4.0 dbus-glib-1 glib-2.0 gobject-2.0])
135       CFLAGS="$CFLAGS $Audacious_CFLAGS"
136       LIBS="$LIBS $Audacious_LIBS"
137       save_CPPFLAGS="$CPPFLAGS"
138       CPPFLAGS="$Audacious_CFLAGS -I`pkg-config --variable=audacious_include_dir audacious`/audacious"
139       AC_CHECK_HEADERS([audacious/audctrl.h audacious/dbus.h glib.h glib-object.h],
140                        [], AC_MSG_ERROR([required header(s) not found]))
141       CPPFLAGS="$save_CPPFLAGS"
142       AC_DEFINE(AUDACIOUS, 1, [Define for Audacious support])
143 else if test x$want_audacious = xlegacy; then
144       PKG_CHECK_MODULES([Audacious], [audacious < 1.4.0 glib-2.0])
145       CFLAGS="$CFLAGS $Audacious_CFLAGS"
146       LIBS="$LIBS $Audacious_LIBS"
147       save_CPPFLAGS="$CPPFLAGS"
148       CPPFLAGS="$Audacious_CFLAGS -I`pkg-config --variable=audacious_include_dir audacious`/audacious"
149       AC_CHECK_HEADERS([audacious/beepctrl.h glib.h], [], AC_MSG_ERROR([required  header(s) not found]))
150       CPPFLAGS="$save_CPPFLAGS"
151       AC_DEFINE(AUDACIOUS, 1, [Define for Audacious support])
152       AC_DEFINE(AUDACIOUS_LEGACY, 1, [Define for Audacious Legacy support])
153       fi
154 fi
155
156
157 dnl
158 dnl BMPx
159 dnl
160
161 AC_ARG_ENABLE([bmpx],
162               AC_HELP_STRING([--enable-bmpx], [enable if you want BMPx support @<:@default=no@:>@]),
163               [want_bmpx="$enableval"], [want_bmpx=no])
164
165 AM_CONDITIONAL(BUILD_BMPX, test x$want_bmpx = xyes)
166 if test x$want_bmpx = xyes; then
167   PKG_CHECK_MODULES([BMPx], [bmp-2.0 >= 0.14.0])
168   CFLAGS="$CFLAGS $BMPx_CFLAGS"
169   LIBS="$LIBS $BMPx_LIBS"
170   AC_DEFINE(BMPX, 1, [Define if you want BMPx support])
171 fi
172
173
174 dnl
175 dnl Support for IBM/Lenovo notebooks
176 dnl
177
178 AC_ARG_ENABLE([ibm],
179               AC_HELP_STRING([--enable-ibm], [enable if you want support for IBM/Lenovo notebooks @<:default=no@:>@]),
180               [want_ibm="$enableval"], [want_ibm=no])
181
182 AM_CONDITIONAL(BUILD_IBM, test x$want_ibm = xyes)
183 if test x$want_ibm = xyes; then
184         if test x"$uname" != xLinux; then
185                 AC_MSG_NOTICE([support for IBM/Lenovo notebooks not supported on $uname... disabling])
186                 want_ibm=no
187         else
188                 AC_DEFINE(IBM, 1, [Define if you want support for IBM/Lenovo notebooks (SMAPI)])
189         fi
190 fi
191
192
193 dnl
194 dnl Hddtemp
195 dnl
196
197 AC_ARG_ENABLE([hddtemp],
198               AC_HELP_STRING([--disable-hddtemp],
199                              [disable if you do not want hddtemp support @<:@default=yes@:>@]),
200               [want_hddtemp="$enableval"], [want_hddtemp=yes])
201
202 AM_CONDITIONAL(BUILD_HDDTEMP, test x$want_hddtemp = xyes)
203 if test x$want_hddtemp = xyes; then
204   if test x"$uname" != xLinux; then
205       AC_MSG_NOTICE([hddtemp not supported on $uname... disabling])
206       want_hddtemp=no
207   else
208       AC_DEFINE(HDDTEMP, 1, [Define if you want hddtemp support])
209   fi
210 fi
211
212 dnl
213 dnl Math
214 dnl
215
216
217 dnl
218 dnl Apcupsd
219 dnl
220
221 AC_ARG_ENABLE([apcupsd],
222               AC_HELP_STRING([--disable-apcupsd],
223                              [disable if you do not want apcupsd support @<:@default=yes@:>@]),
224               [want_apcupsd="$enableval"], [want_apcupsd=yes])
225
226 AM_CONDITIONAL(BUILD_APCUPSD, test x$want_apcupsd = xyes)
227 if test x$want_apcupsd = xyes; then
228   if test x"$uname" != xLinux; then
229       AC_MSG_NOTICE([apcupsd not supported on $uname... disabling])
230       want_apcupsd=no
231   else
232       AC_DEFINE(APCUPSD, 1, [Define if you want apcupsd support])
233   fi
234 fi
235
236 AC_ARG_ENABLE([math],
237               AC_HELP_STRING([--disable-math], [disable if you do not want math support @<:@default=yes@:>@]),
238               [want_math="$enableval"], [want_math=yes])
239
240 AM_CONDITIONAL(BUILD_MATH, test x$want_math = xyes)
241 if test x$want_math = xyes; then
242   LIBS="$LIBS -lm"
243   AC_DEFINE(MATH, 1, [Define if you want math support])
244 fi
245
246 dnl
247 dnl MPD
248 dnl
249
250 AC_ARG_ENABLE([mpd],
251               AC_HELP_STRING([--disable-mpd], [disable if you do not want MPD support @<:@default=yes@:>@]),
252               [want_mpd="$enableval"], [want_mpd=yes])
253
254 AM_CONDITIONAL(BUILD_MPD, test x$want_mpd = xyes)
255 if test x$want_mpd = xyes; then
256   AC_DEFINE(MPD, 1, [Define if you want MPD support])
257 fi
258
259 dnl
260 dnl MOC
261 dnl
262
263 AC_ARG_ENABLE([moc],
264               AC_HELP_STRING([--disable-moc], [disable if you do not want MOC support @<:@default=yes@:>@]),
265               [want_moc="$enableval"], [want_moc=yes])
266
267 AM_CONDITIONAL(BUILD_MOC, test x$want_moc = xyes)
268 if test x$want_moc = xyes; then
269   AC_DEFINE(MOC, 1, [Define if you want MOC support])
270 fi
271
272 dnl
273 dnl XMMS2
274 dnl
275
276 AC_ARG_ENABLE([xmms2],
277               AC_HELP_STRING([--enable-xmms2], [enable if you want XMMS2 support @<:@default=no@:>@]),
278               [want_xmms2="$enableval"], [want_xmms2=no])
279
280 AM_CONDITIONAL(BUILD_XMMS2, test x$want_xmms2 = xyes)
281 if test x$want_xmms2 = xyes; then
282   PKG_CHECK_MODULES([XMMS2], [xmms2-client])
283     CFLAGS="$CFLAGS $XMMS2_CFLAGS"
284     LIBS="$LIBS $XMMS2_LIBS"
285     AC_DEFINE(XMMS2, 1, [Define if you want XMMS2 support])
286 fi
287
288 dnl
289 dnl EVE Skill Monitor
290 dnl
291
292 AC_ARG_ENABLE([eve],
293               AC_HELP_STRING([--enable-eve], [Eve-Online skill monitor @<:@default=no@:>@]),
294               [want_eve="$enableval"], [want_eve=no])
295
296 AM_CONDITIONAL(BUILD_EVE, test x$want_eve = xyes)
297 if test x$want_eve = xyes; then
298         PKG_CHECK_MODULES([libxml2], libxml-2.0)
299         PKG_CHECK_MODULES([libcurl], libcurl)
300         CFLAGS="$CFLAGS $libxml2_CFLAGS $libcurl_CFLAGS"
301         LIBS="$LIBS $libxml2_LIBS $libcurl_LIBS"
302         AC_DEFINE(EVE, 1, [Define if you want Eve-Online Skill monitor support])
303         AC_DEFINE(EVEURL_TRAINING, "http://api.eve-online.com/char/SkillInTraining.xml.aspx", [Eve training URL])
304         AC_DEFINE(EVEURL_SKILLTREE, "http://api.eve-online.com/eve/Skilltree.xml.aspx", [Eve skilltree URL])
305         AC_DEFINE(MY_ENCODING, "ISO-8859-1", [Textencoding to use])
306         AC_DEFINE(EVE_OUTPUT_FORMAT, "%s %d in %s", [Eve output format])
307 fi
308
309 dnl
310 dnl RSS
311 dnl
312
313 AC_ARG_ENABLE([rss],
314               AC_HELP_STRING([--enable-rss], [enable if you want rss support @<:@default=no@:>@]),
315               [want_rss="$enableval"], [want_rss=no])
316 #
317 AM_CONDITIONAL(BUILD_RSS, test x$want_rss = xyes)
318 if test x$want_rss = xyes; then
319         WANT_GLIB=yes
320         PKG_CHECK_MODULES([libxml2], libxml-2.0)
321         PKG_CHECK_MODULES([libcurl], libcurl)
322         CFLAGS="$CFLAGS $libxml2_CFLAGS $libcurl_CFLAGS"
323         LIBS="$LIBS $libxml2_LIBS $libcurl_LIBS"
324         AC_DEFINE(RSS, 1, [Define if you want rss support])
325 fi
326
327 dnl
328 dnl Lua
329 dnl
330
331 AC_ARG_ENABLE([lua],
332               AC_HELP_STRING([--enable-lua], [enable if you want Lua scripting support @<:@default=no@:>@]),
333               [want_lua="$enableval"], [want_lua=no])
334 #
335 AM_CONDITIONAL(BUILD_LUA, test x$want_lua = xyes)
336 if test x$want_lua = xyes; then
337         PKG_CHECK_MODULES(LUA, lua >= 5.1, [ ],[
338                 PKG_CHECK_MODULES(LUA51, lua5.1 >= 5.1, [ ])
339         ])
340         CFLAGS="$CFLAGS $LUA_CFLAGS $LUA51_CFLAGS"
341         LIBS="$LIBS $LUA_LIBS $LUA51_LIBS"
342         AC_DEFINE(HAVE_LUA, 1, [Define if you want Lua scripting support])
343 fi
344
345 dnl
346 dnl Wireless extensions
347 dnl
348
349 AC_ARG_ENABLE([wlan],
350               AC_HELP_STRING([--enable-wlan], [enable if you want wireless support @<:@default=no@:>@]),
351               [want_wlan="$enableval"], [want_wlan=no])
352
353 AM_CONDITIONAL(BUILD_WLAN, test x$want_wlan = xyes)
354 if test x$want_wlan = xyes; then
355   AC_CHECK_HEADERS([iwlib.h], [], AC_MSG_ERROR([iwlib.h header not found]))
356   AC_CHECK_LIB([iw], [iw_sockets_open], [LIBS="$LIBS -liw"], AC_MSG_ERROR([iw_sockets_open not found]))
357         AC_DEFINE(HAVE_IWLIB, 1, [Define if you want wireless support])
358 fi
359
360 dnl
361 dnl IMLIB2
362 dnl
363
364 AC_ARG_ENABLE([imlib2],
365                           AC_HELP_STRING([--enable-imlib2], [enable if you want Imlib2 support [[default=no]]]),
366                           [want_imlib2="$enableval"], [want_imlib2=no])
367
368 AM_CONDITIONAL(BUILD_IMLIB2, test x$want_imlib2 = xyes)
369 if test x$want_imlib2 = xyes; then
370         PKG_CHECK_MODULES([Imlib2], [imlib2])
371         CFLAGS="$CFLAGS $Imlib2_CFLAGS"
372         LIBS="$LIBS $Imlib2_LIBS"
373         AC_DEFINE(IMLIB2, 1, [Define if you want Imlib2 support])
374 fi
375
376
377 dnl
378 dnl PORT_MONITORS
379 dnl
380
381 AC_ARG_ENABLE([portmon],
382               AC_HELP_STRING([--disable-portmon],
383                              [disable if you do not want tcp (ip4) port monitoring @<:@default=yes@:>@]),
384               [want_portmon="$enableval"], [want_portmon=yes])
385
386 if test x"$want_portmon" = xyes; then
387   if test x"$uname" != xLinux; then
388       AC_MSG_NOTICE([port monitors not supported on $uname... disabling])
389       want_portmon=no
390   else
391         AC_CHECK_FUNCS([getnameinfo], [], AC_MSG_ERROR([getnameinfo function not found]))
392         AC_CHECK_HEADERS([netdb.h netinet/in.h netinet/tcp.h sys/socket.h arpa/inet.h], [],
393            [PORT_MONITORS_MISSING=yes])
394         if test x"$PORT_MONITORS_MISSING" = xyes; then
395               AC_MSG_ERROR([missing a needed network header for port monitoring])
396         fi
397         WANT_GLIB=yes
398         AC_DEFINE(TCP_PORT_MONITOR, 1, [Define if you want tcp port monitoring support])
399   fi
400 fi
401 AM_CONDITIONAL(BUILD_PORT_MONITORS, test x"$want_portmon" = xyes)
402
403
404 dnl
405 dnl ICONV
406 dnl
407
408 AM_ICONV
409 if test "$am_cv_func_iconv" != yes; then
410   AC_MSG_WARN([Could not find libiconv])
411 else
412   LIBS="$LIBS $LIBICONV"
413 fi
414
415 dnl
416 dnl X11
417 dnl
418
419 AC_ARG_ENABLE([x11],
420               AC_HELP_STRING([--disable-x11], [disable if you do not want X11 support @<:@default=yes@:>@]),
421               [want_x11="$enableval"], [want_x11=yes])
422
423 AM_CONDITIONAL(BUILD_X11, test x$want_x11 = xyes)
424 if test "x$want_x11" = "xyes"; then
425     if $PKG_CONFIG --exists x11; then
426       PKG_CHECK_MODULES([X11], [x11])
427       CFLAGS="$CFLAGS $X11_CFLAGS"
428       LIBS="$LIBS $X11_LIBS"
429     else
430       dnl non-modular X11 installations
431       AC_PATH_X
432       AC_PATH_XTRA
433       CFLAGS="$CFLAGS $X_CFLAGS"
434       LIBS="$LIBS $X_LIBS"
435       LDFLAGS="$LDFLAGS $LIBS $X_PRE_LIBS"
436       if test "x$no_x" = "xyes"; then
437         AC_MSG_ERROR([Can't locate your X11 installation])
438       fi
439       AC_CHECK_LIB([X11], [XOpenDisplay], [], AC_MSG_ERROR([Could not find XOpenDisplay in -lX11]))
440     fi
441     AC_DEFINE(X11, 1, [Define if you want to use X11])
442 fi
443
444
445 dnl
446 dnl Xext Double-buffering Extension
447 dnl
448
449 AC_ARG_ENABLE([double_buffer],
450               AC_HELP_STRING([--disable-double-buffer],
451                              [disable for no Xdbe double-buffering support @<:@default=yes@:>@]),
452               [want_double_buffer="$enableval"], [want_double_buffer=yes])
453
454 if test "x$want_double_buffer" = "xyes"; then
455     if test "x$want_x11" != "xyes"; then
456       dnl silently disable if no x11
457       want_double_buffer=no
458     else
459       if $PKG_CONFIG --exists xext; then
460         PKG_CHECK_MODULES([Xext],[xext])
461         CFLAGS="$CFLAGS $Xext_CFLAGS"
462         LIBS="$LIBS $Xext_LIBS"
463       else
464         dnl non-modular X11 installation
465         AC_CHECK_LIB([Xext], [XdbeQueryExtension], [LIBS="$LIBS -lXext"],
466                     AC_MSG_ERROR([Could not find XdbeQueryExtension in -lXext]))
467       fi
468       AC_DEFINE(HAVE_XDBE, 1, [Define for X11 double-buffering])
469     fi
470 fi
471
472
473 dnl
474 dnl Xdamage Extension
475 dnl
476
477 AC_ARG_ENABLE([xdamage],
478               AC_HELP_STRING([--disable-xdamage],
479                              [disable if you do not want Xdamage support @<:@default=yes@:>@]),
480               [want_xdamage="$enableval"], [want_xdamage=yes])
481
482 if test "x$want_xdamage" = "xyes"; then
483     if test "x$want_x11" != "xyes"; then
484       dnl silently disable if no x11
485       want_xdamage=no
486     else
487       if $PKG_CONFIG --exists xdamage; then
488         PKG_CHECK_MODULES([XDamage],[xdamage])
489         CFLAGS="$CFLAGS $XDamage_CFLAGS"
490         LIBS="$LIBS $XDamage_LIBS"
491       else
492         dnl non-modular X11 installation
493         AC_CHECK_LIB([Xdamage], [XDamageQueryExtension], [LIBS="$LIBS -lXdamage"],
494                      AC_MSG_ERROR([Could not find XDamageQueryExtension in -lXdamage]))
495       fi
496       AC_DEFINE(HAVE_XDAMAGE, 1, [Define for X11 Xdamage extension])
497     fi
498 fi
499
500
501 dnl
502 dnl Xft
503 dnl
504
505 AC_ARG_ENABLE([xft],
506               AC_HELP_STRING([--disable-xft], [disable if you do not want to use Xft @<:@default=yes@:>@]),
507               [want_xft="$enableval"], [want_xft=yes])
508
509 if test x$want_xft = "xyes"; then
510     if test "x$want_x11" != "xyes"; then
511       dnl silently disable if no x11
512       want_xft=no
513     else
514       PKG_CHECK_MODULES([Xft], [xft])
515       CFLAGS="$CFLAGS $Xft_CFLAGS"
516       LIBS="$LIBS $Xft_LIBS"
517       AC_DEFINE(XFT, 1, [Define for Xft support])
518     fi
519 fi
520
521 dnl
522 dnl NVIDIA libXNVCtrl support
523 dnl
524
525 AC_ARG_ENABLE([nvidia],
526                 AC_HELP_STRING([--enable-nvidia], [enable if you want nvidia support @<:@default=no@:>@]),
527                 [want_nvidia="$enableval"], [want_nvidia=no])
528 if test x$want_nvidia = xyes; then
529     if test "x$want_x11" != "xyes"; then
530                 # do nada
531                 want_nvidia=no
532         else
533                 AC_CHECK_HEADERS([NVCtrl/NVCtrl.h], [], AC_MSG_ERROR([NVCtrl/NVCtrl.h header not found]))
534 dnl AC_CHECK_LIB([XNVCtrl], [XNVCTRLQueryVersion], [] ,[AC_MSG_ERROR([grrr])] )
535 dnl AC_CHECK_LIB([XNVCtrl], [XNVCTRLCheckTargetData], [], [AC_MSG_ERROR([grr])])
536 dnl ## am I Stupid ??
537 dnl ## it won't find the lib for some reason!?
538                 LIBS="$LIBS -lXNVCtrl"
539                         AC_DEFINE(NVIDIA, 1, [Define if you want nvidia support])
540         fi
541 fi
542 AM_CONDITIONAL(BUILD_NVIDIA, test x$want_nvidia = xyes)
543
544 dnl
545 dnl GLIB
546 dnl
547
548 if test x$WANT_GLIB = xyes; then
549         PKG_CHECK_MODULES([GLib2], [glib-2.0])
550         CFLAGS="$CFLAGS $GLib2_CFLAGS"
551         LIBS="$LIBS $GLib2_LIBS"
552 fi
553
554 dnl
555 dnl KVM
556 dnl
557
558 if test x$WANT_KVM = xyes; then
559   AC_CHECK_LIB(kvm, kvm_open,
560     LIBS="$LIBS -lkvm",
561   AC_MSG_ERROR([Could not find kvm_open in -lkvm.])
562   )
563 fi
564
565 dnl
566 dnl devstat
567 dnl
568
569 if test x$WANT_DEVSTAT = xyes; then
570   AC_CHECK_LIB(devstat, devstat_getversion,
571          LIBS="$LIBS -ldevstat",
572          AC_MSG_ERROR([Cound not find devstat_getversion in -ldevstat.])
573   )
574 fi
575
576 dnl
577 dnl OSSLIB for NetBSD/OpenBSD
578 dnl
579
580 if test x$WANT_OSSLIB = xyes; then
581     AC_CHECK_LIB(ossaudio, _oss_ioctl,
582   LIBS="$LIBS -lossaudio",
583   AC_MSG_ERROR([Could not find oss_ioctl in -lossaudio.])
584     )
585 fi
586
587 dnl
588 dnl ALSA for Linux
589 dnl
590 AC_ARG_ENABLE([alsa],
591               AC_HELP_STRING([--disable-alsa], [disable if you do not
592   want ALSA support @<:@default=yes@:>@]),
593               [want_alsa="$enableval"], [want_alsa=yes])
594
595 if test x$want_alsa = xyes; then
596     AC_CHECK_HEADER(alsa/asoundlib.h,, want_alsa=no)
597 fi
598 if test x$want_alsa = xyes; then
599     AC_CHECK_LIB(asound, snd_pcm_open,LIBS="$LIBS -lasound", want_alsa=no)
600 fi
601 if test x$want_alsa = xyes; then
602 AC_DEFINE(MIXER_IS_ALSA, 1, [Define if the mixers use ALSA])
603 fi
604 dnl
605 dnl Some headers
606 dnl
607
608 AC_CHECK_HEADERS([signal.h unistd.h sys/utsname.h sys/stat.h linux/soundcard.h alsa/asoundlib.h dirent.h mcheck.h \
609       sys/statfs.h sys/param.h pthread.h assert.h errno.h time.h])
610 AC_CHECK_HEADERS([sys/mount.h], [], [],
611      [#ifdef HAVE_SYS_PARAM_H
612       #include <sys/param.h>
613       #endif
614       ])
615 # check if we have inotify support
616 AC_CHECK_HEADERS([sys/inotify.h])
617
618 dnl
619 dnl Some defines
620 dnl
621
622 AC_DEFINE(DEFAULTNETDEV, "eth0", [Default networkdevice])
623 AC_DEFINE(CONFIG_FILE, "$HOME/.conkyrc", [Configfile of the user])
624 AC_DEFINE(MAX_SPECIALS_DEFAULT, 512, [Default maximum number of special things, e.g. fonts, offsets, aligns, etc.])
625 AC_DEFINE(MAX_USER_TEXT_DEFAULT, 16384, [Default maximum size of config TEXT buffer, i.e. below TEXT line.])
626 AC_DEFINE(DEFAULT_TEXT_BUFFER_SIZE, 256, [Default size used for temporary, static text buffers])
627
628 dnl
629 dnl Some functions
630 dnl
631
632 AC_CHECK_FUNCS([calloc malloc free popen sysinfo getloadavg memrchr strndup gethostbyname_r])
633 AC_SEARCH_LIBS(clock_gettime, [rt],
634                [AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define if you have clock_gettime()])],
635                [AC_CHECK_FUNCS([gettimeofday], [], [AC_MSG_ERROR([gettimeofday() not available!])])], [])
636
637 dnl
638 dnl Structure checks
639 dnl
640
641 AC_CHECK_MEMBER([struct statfs.f_fstypename],
642                  [AC_DEFINE(HAVE_STRUCT_STATFS_F_FSTYPENAME, 1, [Define if struct statfs has the f_fstypename member])],
643                  [],
644                  [#include <sys/statfs.h>])
645
646 dnl
647 dnl Check for zlib
648 dnl
649
650 AC_CHECK_HEADER(zlib.h,
651                 [],
652                 [AC_MSG_ERROR([zlib is missing; please install the headers first])])
653
654
655 dnl
656 dnl Check for OpenMP support
657 dnl
658
659 AC_ARG_ENABLE([openmp],
660               AC_HELP_STRING([--enable-openmp], [enable if you want OpenMP support @<:@default=no@:>@]),
661               [want_openmp="$enableval"], [want_openmp=no])
662
663 if test x$want_openmp = xyes; then
664         AX_OPENMP([
665           gcc_version=`$CC -dumpversion`
666           gcc_major=`echo $gcc_version | sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
667           gcc_minor=`echo $gcc_version | sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
668           dnl check that the gcc version is >=4.3, if we're using gcc
669           if test ! "x$GCC" = "xyes" -o $gcc_major -ge 4 -a $gcc_minor -ge 3; then
670             AC_DEFINE(HAVE_OPENMP,1,[Define if OpenMP is enabled])
671             CFLAGS="$CFLAGS $OPENMP_CFLAGS"
672           else
673             want_openmp=no
674           fi
675
676         ])
677 fi
678
679 dnl
680 dnl Check doc stuff
681 dnl
682
683 AC_CHECK_PROGS(db2x_xsltproc_cmd, db2x_xsltproc)
684 AC_CHECK_PROGS(db2x_manxml_cmd, db2x_manxml)
685 AC_CHECK_PROGS(xsltproc_cmd, xsltproc)
686 if test x$db2x_xsltproc_cmd = "x" -o x$xsltproc_cmd = "x"; then
687   AM_CONDITIONAL(HAVE_DOCSTUFF, false)
688 else
689   AM_CONDITIONAL(HAVE_DOCSTUFF, true)
690 fi
691
692 dnl
693 dnl kstat in Solaris
694 dnl
695
696 if test x$WANT_KSTAT = xyes; then
697   dah=no
698   AC_CHECK_LIB([kstat], [kstat_open], [dah=yes], [])
699
700   if test x$dah = xyes; then
701     AC_DEFINE(HAVE_KSTAT, 1, [Define if you have kstat (Solaris)])
702     LDFLAGS="$LDFLAGS -lkstat"
703   fi
704 fi
705
706 AC_DEFUN([AM_LANGINFO_CODESET],
707 [
708   AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset,
709     [AC_TRY_LINK([#include <langinfo.h>],
710       [char* cs = nl_langinfo(CODESET);],
711       am_cv_langinfo_codeset=yes,
712       am_cv_langinfo_codeset=no)
713     ])
714   if test $am_cv_langinfo_codeset = yes; then
715     AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
716       [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
717   fi
718 ])
719
720
721 dnl ************************
722 dnl * Linker optimizations *
723 dnl ************************
724 AC_MSG_CHECKING([if $LD accepts -O1])
725 case `$LD -O1 -v 2>&1 </dev/null` in
726 *GNU* | *BSD*)
727   LDFLAGS="$LDFLAGS -Wl,-O1"
728   AC_MSG_RESULT([yes])
729   ;;
730 *)
731   AC_MSG_RESULT([no])
732   ;;
733 esac
734
735 dnl Solve multiple definitions (only necessary when gnulib is used)
736 dnl LDFLAGS="$LDFLAGS -Xlinker -zmuldefs"
737
738 dnl
739 dnl Da.
740 dnl
741
742 CFLAGS="$CFLAGS -Wall -W"
743
744 dnl
745 dnl debug
746 dnl
747
748 AC_ARG_ENABLE([debug],
749               AC_HELP_STRING([--enable-debug], [compile with debug symbols @<:@default=no@:>@]),
750               [want_debug="$enableval"], [want_debug=no])
751
752 if test "x$want_debug" = "xyes" -a $ac_cv_c_compiler_gnu != no; then
753   CFLAGS="$CFLAGS -g3"
754   AC_DEFINE([DEBUG], 1, [Define for debugging])
755 fi
756
757 dnl
758 dnl testing
759 dnl
760
761 AC_ARG_ENABLE([testing],
762               AC_HELP_STRING([--enable-testing], [use strict compiler flags for testing @<:@default=no@:>@]),
763               [want_testing="$enableval"], [want_testing=no])
764
765 if test "x$want_testing" = "xyes" -a $ac_cv_c_compiler_gnu != no; then
766   if test "x$want_debug" = "xyes"; then
767     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"
768     AC_DEFINE([TESTING], [], [Define for testing (enables strict compiler flags)])
769   else
770     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"
771     AC_DEFINE([TESTING], [], [Define for testing (enables strict compiler flags)])
772   fi
773 fi
774
775 AC_SUBST(CFLAGS)
776 AC_SUBST(X11_LIBS)
777
778 AC_OUTPUT
779
780 dnl
781 dnl Print summary
782 dnl
783 cat << EOF
784
785 $PACKAGE $VERSION configured successfully:
786
787  Installing into:   $prefix
788  System config dir: $sysconfdir
789  C compiler flags:  $CFLAGS
790  Linker flags:      $LDFLAGS
791  Libraries:         $LIBS
792
793  * X11:
794   X11 support:      $want_x11
795   XDamage support:  $want_xdamage
796   XDBE support:     $want_double_buffer
797   Xft support:      $want_xft
798
799  * Music detection:
800   Audacious:        $want_audacious
801   BMPx:             $want_bmpx
802   MPD:              $want_mpd
803   MOC:              $want_moc
804   XMMS2:            $want_xmms2
805
806  * General:
807   OpenMP:           $want_openmp
808   math:             $want_math
809   hddtemp:          $want_hddtemp
810   portmon:          $want_portmon
811   RSS:              $want_rss
812   Lua:              $want_lua
813   wireless:         $want_wlan
814   IBM:              $want_ibm
815   nvidia:           $want_nvidia
816   eve-online:       $want_eve
817   config-output:    $want_config_output
818   IMLIB2:           $want_imlib2
819   ALSA mixer:       $want_alsa
820   apcupsd:          $want_apcupsd
821 EOF