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