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