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