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