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