Make configure opts for Lua extras more concise.
[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], [3])
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=yes@:>@]),
242               [want_iostats="$enableval"], [want_iostats=yes])
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_iostats=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 libcurl, see below for more (this has to be above the other uses of want_curl)
312 dnl
313
314 AC_ARG_ENABLE([curl],
315                 AC_HELP_STRING([--enable-curl], [enable if you want curl support @<:@default=no@:>@]),
316                 [want_curl="$enableval"], [want_curl=no])
317
318 dnl
319 dnl EVE Skill Monitor
320 dnl
321
322 AC_ARG_ENABLE([eve],
323               AC_HELP_STRING([--enable-eve], [Eve-Online skill monitor @<:@default=no@:>@]),
324               [want_eve="$enableval"], [want_eve=no])
325
326 AM_CONDITIONAL(BUILD_EVE, test x$want_eve = xyes)
327 if test x$want_eve = xyes; then
328         want_curl=yes
329         want_libxml2=yes
330         AC_DEFINE(EVE, 1, [Define if you want Eve-Online Skill monitor support])
331         AC_DEFINE(EVEURL_TRAINING, "http://api.eve-online.com/char/SkillInTraining.xml.aspx", [Eve training URL])
332         AC_DEFINE(EVEURL_SKILLTREE, "http://api.eve-online.com/eve/Skilltree.xml.aspx", [Eve skilltree URL])
333         AC_DEFINE(MY_ENCODING, "ISO-8859-1", [Textencoding to use])
334         AC_DEFINE(EVE_OUTPUT_FORMAT, "%s %d in %s", [Eve output format])
335 fi
336
337 dnl
338 dnl RSS
339 dnl
340
341 AC_ARG_ENABLE([rss],
342               AC_HELP_STRING([--enable-rss], [enable if you want rss support @<:@default=no@:>@]),
343               [want_rss="$enableval"], [want_rss=no])
344 #
345 AM_CONDITIONAL(BUILD_RSS, test x$want_rss = xyes)
346 if test x$want_rss = xyes; then
347         WANT_GLIB=yes
348         want_curl=yes
349         want_libxml2=yes
350         AC_DEFINE(RSS, 1, [Define if you want Curl support])
351 fi
352
353 dnl
354 dnl WEATHER
355 dnl
356
357 AC_ARG_ENABLE([weather-metar],
358               AC_HELP_STRING([--enable-weather-metar], [enable if you want METAR weather support @<:@default=no@:>@]),
359               [want_metar="$enableval"], [want_metar=no])
360
361 AC_ARG_ENABLE([weather-xoap],
362               AC_HELP_STRING([--enable-weather-xoap], [enable if you want XOAP weather support (also enables METAR) @<:@default=no@:>@]),
363               [want_xoap="$enableval"], [want_xoap=no])
364 #
365 if test x$want_xoap = xyes; then
366         want_metar=yes
367 fi
368 AM_CONDITIONAL(BUILD_WEATHER, test x$want_metar = xyes)
369 AM_CONDITIONAL(BUILD_XOAP, test x$want_xoap = xyes)
370 if test x$want_metar = xyes; then
371         if test x$want_xoap = xyes; then
372                 want_libxml2=yes
373                 AC_DEFINE(XOAP, 1, [Define if you want XOAP weather support])
374                 AC_DEFINE(XOAP_FILE, "$HOME/.xoaprc", [User xoap keys file])
375         fi
376         want_curl=yes
377         AC_DEFINE(WEATHER, 1, [Define if you want METAR weather support])
378 fi
379
380 dnl
381 dnl X11
382 dnl
383
384 AC_ARG_ENABLE([x11],
385               AC_HELP_STRING([--disable-x11], [disable if you do not want X11 support @<:@default=yes@:>@]),
386               [want_x11="$enableval"], [want_x11=yes])
387
388 AM_CONDITIONAL(BUILD_X11, test x$want_x11 = xyes)
389 if test "x$want_x11" = "xyes"; then
390     if $PKG_CONFIG --exists x11; then
391       PKG_CHECK_MODULES([X11], [x11])
392       conky_CFLAGS="$conky_CFLAGS $X11_CFLAGS"
393       conky_LIBS="$conky_LIBS $X11_LIBS"
394     else
395       dnl non-modular X11 installations
396       AC_PATH_X
397       AC_PATH_XTRA
398       conky_CFLAGS="$conky_CFLAGS $X_CFLAGS"
399       conky_LIBS="$conky_LIBS $X_LIBS"
400       conky_LDFLAGS="$conky_LDFLAGS $conky_LIBS $X_PRE_LIBS"
401       if test "x$no_x" = "xyes"; then
402         AC_MSG_ERROR([Can't locate your X11 installation])
403       fi
404       AC_CHECK_LIB([X11], [XOpenDisplay], [], AC_MSG_ERROR([Could not find XOpenDisplay in -lX11]))
405     fi
406     AC_DEFINE(X11, 1, [Define if you want to use X11])
407 fi
408
409 dnl
410 dnl IMLIB2
411 dnl
412
413 AC_ARG_ENABLE([imlib2],
414                           AC_HELP_STRING([--enable-imlib2], [enable if you want Imlib2 support [[default=no]]]),
415                           [want_imlib2="$enableval"], [want_imlib2=no])
416 AC_ARG_ENABLE([lua-imlib2],
417               AC_HELP_STRING([--enable-lua-imlib2], [enable if you want Lua Imlib2 bindings for Conky @<:@default=no@:>@]),
418               [want_lua_imlib2="$enableval"], [want_lua_imlib2=no])
419
420 # if lua-imlib2 is enabled, we must force imlib2
421 if test x$want_lua_imlib2 = xyes; then
422         want_imlib2=yes
423 fi
424
425 if test x$want_imlib2 = xyes; then
426         if test "x$want_x11" != "xyes"; then
427                 dnl silently disable if no x11
428                 want_imlib2=no
429         else
430                 PKG_CHECK_MODULES([Imlib2], [imlib2])
431                 conky_CFLAGS="$conky_CFLAGS $Imlib2_CFLAGS"
432                 conky_LIBS="$conky_LIBS $Imlib2_LIBS"
433                 AC_DEFINE(IMLIB2, 1, [Define if you want Imlib2 support])
434         fi
435 fi
436 AM_CONDITIONAL(BUILD_IMLIB2, test x$want_imlib2 = xyes)
437
438 dnl
439 dnl Lua
440 dnl
441
442 AC_ARG_ENABLE([lua],
443               AC_HELP_STRING([--enable-lua], [enable if you want Lua scripting support @<:@default=yes@:>@]),
444               [want_lua="$enableval"], [want_lua=yes])
445 AC_ARG_ENABLE([lua-cairo],
446               AC_HELP_STRING([--enable-lua-cairo], [enable if you want Lua Cairo bindings for Conky @<:@default=no@:>@]),
447               [want_lua_cairo="$enableval"], [want_lua_cairo=no])
448 need_tolua=no
449 if test x$want_lua_cairo = xyes -o x$want_lua_imlib2 = xyes; then
450         need_tolua=yes
451         want_lua=yes
452 fi
453
454 AM_CONDITIONAL(BUILD_LUA, test x$want_lua = xyes)
455 if test x$want_lua = xyes; then
456         PKG_CHECK_MODULES(LUA, lua >= 5.1, [ ],[
457                 PKG_CHECK_MODULES(LUA51, lua-5.1 >= 5.1, [ ],[
458                         PKG_CHECK_MODULES(LUA51, lua5.1 >= 5.1)
459                 ])
460         ])
461         conky_CFLAGS="$conky_CFLAGS $LUA_CFLAGS $LUA51_CFLAGS"
462         conky_LIBS="$conky_LIBS $LUA_LIBS $LUA51_LIBS"
463
464         if test x$need_tolua = xyes; then
465                 AC_DEFINE(LUA_EXTRAS, 1, [Define if you want Lua extras])
466                 if test "x$want_x11" != "xyes"; then
467                         dnl silently disable if no x11
468                         want_lua_cairo=no
469                 else
470                         if test x$want_lua_cairo = xyes; then
471                                 PKG_CHECK_MODULES([cairo], cairo)
472                                 PKG_CHECK_MODULES([cairo_xlib], cairo-xlib)
473                                 AC_DEFINE(HAVE_LUA_CAIRO, 1, [Define if you want Lua Cairo bindings for Conky])
474                                 libcairo_CFLAGS="$libcairo_CFLAGS $cairo_CFLAGS $cairo_xlib_CFLAGS"
475                                 libcairo_LIBS="$libcairo_LIBS $cairo_LIBS $cairo_xlib_LIBS"
476                         fi
477                         if test x$want_imlib2 = xyes; then
478                                 AC_DEFINE(HAVE_LUA_IMLIB2, 1, [Define if you want Lua Imlib2 bindings for Conky])
479                         fi
480                 fi
481                 AC_CHECK_PROGS(toluapp, [tolua++ tolua++5.1], no)
482                 if test x$toluapp = xno; then
483                         AC_MSG_ERROR([tolua++ or tolua++5.1 is required for Lua extras.])
484                 else
485                         AC_SEARCH_LIBS(tolua_error,
486                                                    [tolua++ tolua++5.1],
487                                                    AC_SUBST(tolua_LIBS,"${LIBS}"),
488                                                    AC_MSG_ERROR([tolua_error not found]),
489                                                    $LUA51_LIBS)
490                 fi
491                 conky_LIBS="$conky_LIBS $tolua_LIBS"
492         fi
493         AC_DEFINE(HAVE_LUA, 1, [Define if you want Lua scripting support])
494 fi
495 AM_CONDITIONAL(BUILD_LUA_CAIRO, test x$want_lua_cairo = xyes)
496 AM_CONDITIONAL(BUILD_LUA_IMLIB2, test x$want_lua_imlib2 = xyes)
497
498 dnl
499 dnl Wireless extensions
500 dnl
501
502 AC_ARG_ENABLE([wlan],
503               AC_HELP_STRING([--enable-wlan], [enable if you want wireless support @<:@default=no@:>@]),
504               [want_wlan="$enableval"], [want_wlan=no])
505
506 AM_CONDITIONAL(BUILD_WLAN, test x$want_wlan = xyes)
507 if test x$want_wlan = xyes; then
508   AC_CHECK_HEADERS([iwlib.h], [], AC_MSG_ERROR([iwlib.h header not found]))
509   AC_CHECK_LIB([iw], [iw_sockets_open], [conky_LIBS="$conky_LIBS -liw"], AC_MSG_ERROR([iw_sockets_open not found]))
510         AC_DEFINE(HAVE_IWLIB, 1, [Define if you want wireless support])
511 fi
512
513 dnl
514 dnl PORT_MONITORS
515 dnl
516
517 AC_ARG_ENABLE([portmon],
518               AC_HELP_STRING([--disable-portmon],
519                              [disable if you do not want tcp (ip4) port monitoring @<:@default=yes@:>@]),
520               [want_portmon="$enableval"], [want_portmon=yes])
521
522 if test x"$want_portmon" = xyes; then
523   if test x"$uname" != xLinux; then
524       AC_MSG_NOTICE([port monitors not supported on $uname... disabling])
525       want_portmon=no
526   else
527         AC_CHECK_FUNCS([getnameinfo], [], AC_MSG_ERROR([getnameinfo function not found]))
528         AC_CHECK_HEADERS([netdb.h netinet/in.h netinet/tcp.h sys/socket.h arpa/inet.h], [],
529            [PORT_MONITORS_MISSING=yes])
530         if test x"$PORT_MONITORS_MISSING" = xyes; then
531               AC_MSG_ERROR([missing a needed network header for port monitoring])
532         fi
533         WANT_GLIB=yes
534         AC_DEFINE(TCP_PORT_MONITOR, 1, [Define if you want tcp port monitoring support])
535   fi
536 fi
537 AM_CONDITIONAL(BUILD_PORT_MONITORS, test x"$want_portmon" = xyes)
538
539
540 dnl
541 dnl ICONV
542 dnl
543
544 AM_ICONV
545 if test "$am_cv_func_iconv" != yes; then
546   AC_MSG_WARN([Could not find libiconv])
547 else
548   conky_LIBS="$conky_LIBS $LIBICONV"
549 fi
550
551 dnl
552 dnl Xext Double-buffering Extension
553 dnl
554
555 AC_ARG_ENABLE([double_buffer],
556               AC_HELP_STRING([--disable-double-buffer],
557                              [disable for no Xdbe double-buffering support @<:@default=yes@:>@]),
558               [want_double_buffer="$enableval"], [want_double_buffer=yes])
559
560 if test "x$want_double_buffer" = "xyes"; then
561     if test "x$want_x11" != "xyes"; then
562       dnl silently disable if no x11
563       want_double_buffer=no
564     else
565       if $PKG_CONFIG --exists xext; then
566         PKG_CHECK_MODULES([Xext],[xext])
567         conky_CFLAGS="$conky_CFLAGS $Xext_CFLAGS"
568         conky_LIBS="$conky_LIBS $Xext_LIBS"
569       else
570         dnl non-modular X11 installation
571         AC_CHECK_LIB([Xext], [XdbeQueryExtension], [conky_LIBS="$conky_LIBS -lXext"],
572                     AC_MSG_ERROR([Could not find XdbeQueryExtension in -lXext]))
573       fi
574       AC_DEFINE(HAVE_XDBE, 1, [Define for X11 double-buffering])
575     fi
576 fi
577
578
579 dnl
580 dnl Xdamage Extension
581 dnl
582
583 AC_ARG_ENABLE([xdamage],
584               AC_HELP_STRING([--disable-xdamage],
585                              [disable if you do not want Xdamage support @<:@default=yes@:>@]),
586               [want_xdamage="$enableval"], [want_xdamage=yes])
587
588 if test "x$want_xdamage" = "xyes"; then
589     if test "x$want_x11" != "xyes"; then
590       dnl silently disable if no x11
591       want_xdamage=no
592     else
593       if $PKG_CONFIG --exists xdamage; then
594         PKG_CHECK_MODULES([XDamage],[xdamage])
595         conky_CFLAGS="$conky_CFLAGS $XDamage_CFLAGS"
596         conky_LIBS="$conky_LIBS $XDamage_LIBS"
597       else
598         dnl non-modular X11 installation
599                 AC_CHECK_LIB([Xdamage], [XDamageQueryExtension], [conky_LIBS="$conky_LIBS -lXdamage"],
600                      AC_MSG_ERROR([Could not find XDamageQueryExtension in -lXdamage]))
601       fi
602       AC_DEFINE(HAVE_XDAMAGE, 1, [Define for X11 Xdamage extension])
603     fi
604 fi
605
606
607 dnl
608 dnl Xft
609 dnl
610
611 AC_ARG_ENABLE([xft],
612               AC_HELP_STRING([--disable-xft], [disable if you do not want to use Xft @<:@default=yes@:>@]),
613               [want_xft="$enableval"], [want_xft=yes])
614
615 if test x$want_xft = "xyes"; then
616     if test "x$want_x11" != "xyes"; then
617       dnl silently disable if no x11
618       want_xft=no
619     else
620       PKG_CHECK_MODULES([Xft], [xft])
621       conky_CFLAGS="$conky_CFLAGS $Xft_CFLAGS"
622       conky_LIBS="$conky_LIBS $Xft_LIBS"
623       AC_DEFINE(XFT, 1, [Define for Xft support])
624     fi
625 fi
626
627 dnl
628 dnl NVIDIA libXNVCtrl support
629 dnl
630
631 AC_ARG_ENABLE([nvidia],
632                 AC_HELP_STRING([--enable-nvidia], [enable if you want nvidia support @<:@default=no@:>@]),
633                 [want_nvidia="$enableval"], [want_nvidia=no])
634 if test x$want_nvidia = xyes; then
635     if test "x$want_x11" != "xyes"; then
636                 # do nada
637                 want_nvidia=no
638         else
639                 AC_CHECK_HEADERS([NVCtrl/NVCtrl.h], [], AC_MSG_ERROR([NVCtrl/NVCtrl.h header not found]))
640 dnl AC_CHECK_LIB([XNVCtrl], [XNVCTRLQueryVersion], [] ,[AC_MSG_ERROR([grrr])] )
641 dnl AC_CHECK_LIB([XNVCtrl], [XNVCTRLCheckTargetData], [], [AC_MSG_ERROR([grr])])
642 dnl ## am I Stupid ??
643 dnl ## it won't find the lib for some reason!?
644                 conky_LIBS="$conky_LIBS -lXNVCtrl"
645                         AC_DEFINE(NVIDIA, 1, [Define if you want nvidia support])
646         fi
647 fi
648 AM_CONDITIONAL(BUILD_NVIDIA, test x$want_nvidia = xyes)
649
650 dnl
651 dnl GLIB
652 dnl
653
654 if test x$WANT_GLIB = xyes; then
655         PKG_CHECK_MODULES([GLib2], [glib-2.0])
656         conky_CFLAGS="$conky_CFLAGS $GLib2_CFLAGS"
657         conky_LIBS="$conky_LIBS $GLib2_LIBS"
658 fi
659
660 dnl
661 dnl libcurl
662 dnl
663
664 if test x$want_curl = xyes; then
665         PKG_CHECK_MODULES([libcurl], libcurl)
666         conky_CFLAGS="$conky_CFLAGS $libcurl_CFLAGS"
667         conky_LIBS="$conky_LIBS $libcurl_LIBS"
668         AC_DEFINE(HAVE_CURL, 1, [Define if you want Curl support])
669 fi
670 AM_CONDITIONAL(BUILD_CURL, test x$want_curl = xyes)
671
672 dnl
673 dnl libx
674 dnl
675
676 if test x$want_libxml2 = xyes; then
677         PKG_CHECK_MODULES([libxml2], libxml-2.0)
678         conky_CFLAGS="$conky_CFLAGS $libxml2_CFLAGS"
679         conky_LIBS="$conky_LIBS $libxml2_LIBS"
680 fi
681
682 dnl
683 dnl KVM
684 dnl
685
686 if test x$WANT_KVM = xyes; then
687   AC_CHECK_LIB(kvm, kvm_open,
688     conky_LIBS="$conky_LIBS -lkvm",
689   AC_MSG_ERROR([Could not find kvm_open in -lkvm.])
690   )
691 fi
692
693 dnl
694 dnl devstat
695 dnl
696
697 if test x$WANT_DEVSTAT = xyes; then
698   AC_CHECK_LIB(devstat, devstat_getversion,
699          conky_LIBS="$conky_LIBS -ldevstat",
700          AC_MSG_ERROR([Cound not find devstat_getversion in -ldevstat.])
701   )
702 fi
703
704 dnl
705 dnl OSSLIB for NetBSD/OpenBSD
706 dnl
707
708 if test x$WANT_OSSLIB = xyes; then
709     AC_CHECK_LIB(ossaudio, _oss_ioctl,
710   conky_LIBS="$conky_LIBS -lossaudio",
711   AC_MSG_ERROR([Could not find oss_ioctl in -lossaudio.])
712     )
713 fi
714
715 dnl
716 dnl ALSA for Linux
717 dnl
718 AC_ARG_ENABLE([alsa],
719               AC_HELP_STRING([--disable-alsa], [disable if you do not
720   want ALSA support @<:@default=yes@:>@]),
721               [want_alsa="$enableval"], [want_alsa=yes])
722
723 if test x$want_alsa = xyes; then
724     AC_CHECK_HEADER(alsa/asoundlib.h,, want_alsa=no)
725 fi
726 if test x$want_alsa = xyes; then
727     AC_CHECK_LIB(asound, snd_pcm_open,conky_LIBS="$conky_LIBS -lasound", want_alsa=no)
728 fi
729 if test x$want_alsa = xyes; then
730 AC_DEFINE(MIXER_IS_ALSA, 1, [Define if the mixers use ALSA])
731 fi
732 dnl
733 dnl Some headers
734 dnl
735
736 AC_CHECK_HEADERS([signal.h unistd.h sys/utsname.h sys/stat.h linux/soundcard.h alsa/asoundlib.h dirent.h mcheck.h \
737       sys/statfs.h sys/param.h pthread.h assert.h errno.h time.h])
738 AC_CHECK_HEADERS([sys/mount.h], [], [],
739      [#ifdef HAVE_SYS_PARAM_H
740       #include <sys/param.h>
741       #endif
742       ])
743 # check if we have inotify support
744 AC_CHECK_HEADERS([sys/inotify.h])
745
746 dnl
747 dnl Some defines
748 dnl
749
750 AC_DEFINE(DEFAULTNETDEV, "eth0", [Default networkdevice])
751 AC_DEFINE(CONFIG_FILE, "$HOME/.conkyrc", [Configfile of the user])
752 AC_DEFINE(MAX_SPECIALS_DEFAULT, 512, [Default maximum number of special things, e.g. fonts, offsets, aligns, etc.])
753 AC_DEFINE(MAX_USER_TEXT_DEFAULT, 16384, [Default maximum size of config TEXT buffer, i.e. below TEXT line.])
754 AC_DEFINE(DEFAULT_TEXT_BUFFER_SIZE, 256, [Default size used for temporary, static text buffers])
755
756 dnl
757 dnl Some functions
758 dnl
759
760 AC_CHECK_FUNCS([calloc malloc free popen sysinfo getloadavg memrchr strndup gethostbyname_r])
761 AC_SEARCH_LIBS(clock_gettime, [rt], conky_LIBS="$conky_LIBS -lrt"
762                [AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define if you have clock_gettime()])],
763                [AC_CHECK_FUNCS([gettimeofday], [], [AC_MSG_ERROR([gettimeofday() not available!])])], [])
764
765 dnl
766 dnl Structure checks
767 dnl
768
769 AC_CHECK_MEMBER([struct statfs.f_fstypename],
770                  [AC_DEFINE(HAVE_STRUCT_STATFS_F_FSTYPENAME, 1, [Define if struct statfs has the f_fstypename member])],
771                  [],
772                  [#include <sys/statfs.h>])
773
774 dnl
775 dnl Check for zlib
776 dnl
777
778 AC_CHECK_HEADER(zlib.h,
779                 [],
780                 [AC_MSG_ERROR([zlib is missing; please install the headers first])])
781
782
783 dnl
784 dnl Check for OpenMP support
785 dnl
786 dnl removed for now due to problems with GCC's OpenMP implementation
787
788 dnl AC_ARG_ENABLE([openmp],
789 dnl           AC_HELP_STRING([--enable-openmp], [enable if you want OpenMP support @<:@default=no@:>@]),
790 dnl           [want_openmp="$enableval"], [want_openmp=no])
791
792 dnl if test x$want_openmp = xyes; then
793 dnl     AX_OPENMP([
794 dnl       gcc_version=`$CC -dumpversion`
795 dnl       gcc_major=`echo $gcc_version | sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
796 dnl       gcc_minor=`echo $gcc_version | sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
797 dnl       dnl check that the gcc version is >=4.3, if we're using gcc
798 dnl       if test ! "x$GCC" = "xyes" -o $gcc_major -ge 4 -a $gcc_minor -ge 3; then
799 dnl         AC_DEFINE(HAVE_OPENMP,1,[Define if OpenMP is enabled])
800 dnl         conky_CFLAGS="$conky_CFLAGS $OPENMP_CFLAGS"
801 dnl       else
802 dnl         want_openmp=no
803 dnl       fi
804 dnl     ])
805 dnl fi
806
807 dnl
808 dnl Check doc stuff
809 dnl
810
811 AC_CHECK_PROGS(db2x_xsltproc_cmd, db2x_xsltproc)
812 AC_CHECK_PROGS(db2x_manxml_cmd, db2x_manxml)
813 AC_CHECK_PROGS(xsltproc_cmd, xsltproc)
814 if test x$db2x_xsltproc_cmd = "x" -o x$xsltproc_cmd = "x"; then
815   AM_CONDITIONAL(HAVE_DOCSTUFF, false)
816 else
817   AM_CONDITIONAL(HAVE_DOCSTUFF, true)
818 fi
819
820 dnl
821 dnl kstat in Solaris
822 dnl
823
824 if test x$WANT_KSTAT = xyes; then
825   dah=no
826   AC_CHECK_LIB([kstat], [kstat_open], [dah=yes], [])
827
828   if test x$dah = xyes; then
829     AC_DEFINE(HAVE_KSTAT, 1, [Define if you have kstat (Solaris)])
830     conky_LDFLAGS="$conky_LDFLAGS -lkstat"
831   fi
832 fi
833
834 AC_DEFUN([AM_LANGINFO_CODESET],
835 [
836   AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset,
837     [AC_TRY_LINK([#include <langinfo.h>],
838       [char* cs = nl_langinfo(CODESET);],
839       am_cv_langinfo_codeset=yes,
840       am_cv_langinfo_codeset=no)
841     ])
842   if test $am_cv_langinfo_codeset = yes; then
843     AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
844       [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
845   fi
846 ])
847
848
849 dnl ************************
850 dnl * Linker optimizations *
851 dnl ************************
852 AC_MSG_CHECKING([if $LD accepts -O1])
853 case `$LD -O1 -v 2>&1 </dev/null` in
854 *GNU* | *BSD*)
855   conky_LDFLAGS="$conky_LDFLAGS -Wl,-O1"
856   AC_MSG_RESULT([yes])
857   ;;
858 *)
859   AC_MSG_RESULT([no])
860   ;;
861 esac
862
863 dnl Solve multiple definitions (only necessary when gnulib is used)
864 dnl conky_LDFLAGS="$conky_LDFLAGS -Xlinker -zmuldefs"
865
866 dnl
867 dnl Da.
868 dnl
869
870 conky_CFLAGS="$conky_CFLAGS -Wall -W"
871
872 dnl
873 dnl debug
874 dnl
875
876 AC_ARG_ENABLE([debug],
877               AC_HELP_STRING([--enable-debug], [compile with debug symbols @<:@default=no@:>@]),
878               [want_debug="$enableval"], [want_debug=no])
879
880 if test "x$want_debug" = "xyes" -a $ac_cv_c_compiler_gnu != no; then
881   conky_CFLAGS="$conky_CFLAGS -g3"
882   AC_DEFINE([DEBUG], 1, [Define for debugging])
883 fi
884
885 dnl
886 dnl testing
887 dnl
888
889 AC_ARG_ENABLE([testing],
890               AC_HELP_STRING([--enable-testing], [use strict compiler flags for testing @<:@default=no@:>@]),
891               [want_testing="$enableval"], [want_testing=no])
892
893 if test "x$want_testing" = "xyes" -a $ac_cv_c_compiler_gnu != no; then
894   if test "x$want_debug" = "xyes"; then
895     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"
896     AC_DEFINE([TESTING], [], [Define for testing (enables strict compiler flags)])
897   else
898     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"
899     AC_DEFINE([TESTING], [], [Define for testing (enables strict compiler flags)])
900   fi
901 fi
902
903 AC_SUBST(conky_CFLAGS)
904 AC_SUBST(conky_LIBS)
905 AC_SUBST(X11_LIBS)
906
907 AC_OUTPUT
908
909 dnl
910 dnl Print summary
911 dnl
912 cat << EOF
913
914 $PACKAGE $VERSION configured successfully:
915
916  Installing into:   $prefix
917  System config dir: $sysconfdir
918  C compiler flags:  $conky_CFLAGS
919  Libraries:         $conky_LIBS
920  Linker flags:      $conky_LDFLAGS
921
922  * X11:
923   X11 support:      $want_x11
924   XDamage support:  $want_xdamage
925   XDBE support:     $want_double_buffer
926   Xft support:      $want_xft
927
928  * Music detection:
929   Audacious:        $want_audacious
930   BMPx:             $want_bmpx
931   MPD:              $want_mpd
932   MOC:              $want_moc
933   XMMS2:            $want_xmms2
934
935  * General:
936   OpenMP:           $want_openmp
937   math:             $want_math
938   hddtemp:          $want_hddtemp
939   portmon:          $want_portmon
940   RSS:              $want_rss
941   Curl:             $want_curl
942   Weather
943     METAR:          $want_metar
944     XOAP:           $want_xoap
945   wireless:         $want_wlan
946   IBM:              $want_ibm
947   nvidia:           $want_nvidia
948   eve-online:       $want_eve
949   config-output:    $want_config_output
950   Imlib2:           $want_imlib2
951   ALSA mixer:       $want_alsa
952   apcupsd:          $want_apcupsd
953   I/O stats:        $want_iostats
954
955  * Lua ($want_lua) bindings:
956   Cairo:            $want_lua_cairo
957   Imlib2:           $want_lua_imlib2
958
959 EOF