iwlib configure checks
[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], [4])
6 m4_define([conky_version_micro], [7])
7 m4_define([conky_version_tag], [svn]) dnl [] for releases
8 m4_define([conky_version_revision],[r@REVISION@])
9 m4_define([conky_version], 
10     [conky_version_major().conky_version_minor().conky_version_micro()ifelse(
11       conky_version_tag(), [svn], 
12       [-conky_version_tag()-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
20 dnl prevent libtool setting LTCFLAGS to default of -g -O2 when CFLAGS unset.
21 dnl libtool must be deleted with make distclean to see this fix.
22 if test x"$CFLAGS" = x""; then
23   AC_SUBST(CFLAGS, [ ])
24 fi
25
26 dnl
27 dnl Tools
28 dnl
29 AC_PROG_CC
30 AC_PROG_LD
31 AC_PROG_INSTALL
32 AC_PROG_LIBTOOL
33
34 AC_CHECK_PROG(HAVE_PKGCONFIG, pkg-config, yes, no)
35 if test x"$HAVE_PKGCONFIG" = x"no"; then
36   AC_MSG_ERROR([pkg-config is required!])
37 fi
38 PKG_PROG_PKG_CONFIG([0.17.2])
39
40 AC_CONFIG_FILES(
41   Makefile
42   doc/Makefile
43   src/Makefile
44   src/build.h
45   )
46
47 uname=`uname`
48
49 case $uname in
50   Linux*)
51     WANT_SYSINFO=yes
52     ;;
53   FreeBSD*)
54     WANT_KVM=yes
55     WANT_DEVSTAT=yes
56     ;;
57 #  NetBSD*)
58 #    WANT_KVM=yes
59 #    WANT_OSSLIB=yes
60 #    ;;
61
62   OpenBSD*)
63     WANT_KVM=yes
64     WANT_OSSLIB=yes
65     ;;
66
67 # Solaris doesn't work at all right now
68 #  SunOS*)
69 #    WANT_KSTAT=yes
70 #    ;;
71
72   *)
73     echo "Your operating system $uname isn't supported"
74     echo "Feel free to help. :P"
75     exit 1
76     ;;
77 esac
78
79 AM_CONDITIONAL(BUILD_LINUX, test x$uname = xLinux)
80 #AM_CONDITIONAL(BUILD_SOLARIS, test x$uname = xSunOS)
81 AM_CONDITIONAL(BUILD_FREEBSD, test x$uname = xFreeBSD)
82 #AM_CONDITIONAL(BUILD_NETBSD, test x$uname = xNetBSD)
83 AM_CONDITIONAL(BUILD_OPENBSD, test x$uname = xOpenBSD)
84
85 BUILD_DATE=$(LANG=en_US LC_ALL=en_US LOCALE=en_US date)
86 BUILD_ARCH="$(uname -sr) ($(uname -m))"
87 AC_SUBST(BUILD_DATE)
88 AC_SUBST(BUILD_ARCH)
89
90
91 dnl
92 dnl OWN_WINDOW option
93 dnl
94
95 AC_ARG_ENABLE([own_window],
96               AC_HELP_STRING([--disable-own-window], 
97                              [disable if you do not want support for creating own window @<:@default=yes@:>@]),
98               [dah="$enableval"], [dah=yes])
99
100 if test $dah != "no"; then
101   AC_DEFINE(OWN_WINDOW, 1, [Define if you want support for window creating])
102 fi
103
104
105 dnl
106 dnl Audacious Media Player
107 dnl
108
109 AC_ARG_ENABLE([audacious],
110               AC_HELP_STRING([--enable-audacious], [enable audacious player support @<:@default=no@:>@]),
111               [want_audacious="$enableval"], [want_audacious=no])
112
113 AM_CONDITIONAL(BUILD_AUDACIOUS, test x$want_audacious = xyes)
114 if test x$want_audacious = xyes; then
115   PKG_CHECK_MODULES([AUDACIOUS], [audacious >= 0.1])
116       CFLAGS="$CFLAGS $AUDACIOUS_CFLAGS"
117       LIBS="$LIBS $AUDACIOUS_LIBS"
118       AC_DEFINE(AUDACIOUS, 1, [Define for Audacious support])
119 fi
120
121
122 dnl
123 dnl BMPx
124 dnl
125
126 AC_ARG_ENABLE([bmpx],
127               AC_HELP_STRING([--enable-bmpx], [enable if you want BMPx support @<:@default=no@:>@]),
128               [want_bmpx="$enableval"], [want_bmpx=no])
129
130 AM_CONDITIONAL(BUILD_BMPX, test x$want_bmpx = xyes)
131 if test x$want_bmpx = xyes; then
132   PKG_CHECK_MODULES([BMPX], [bmp-2.0 >= 0.14.0])
133   CFLAGS="$CFLAGS $BMPX_CFLAGS"
134   LIBS="$LIBS $BMPX_LIBS"
135   AC_DEFINE(BMPX, 1, [Define if you want BMPx support])
136 fi
137
138
139 dnl
140 dnl Hddtemp
141 dnl
142
143 AC_ARG_ENABLE([hddtemp],
144               AC_HELP_STRING([--disable-hddtemp], 
145                              [disable if you do not want hddtemp support @<:@default=yes@:>@]),
146               [want_hddtemp="$enableval"], [want_hddtemp=yes])
147
148 AM_CONDITIONAL(BUILD_HDDTEMP, test x$want_hddtemp = xyes)
149 if test x$want_hddtemp = xyes; then
150   AC_DEFINE(HDDTEMP, 1, [Define if you want hddtemp support])
151 fi
152
153 dnl
154 dnl MPD
155 dnl
156
157 AC_ARG_ENABLE([mpd],
158               AC_HELP_STRING([--disable-mpd], [disable if you do not want MPD support @<:@default=yes@:>@]),
159               [want_mpd="$enableval"], [want_mpd=yes])
160
161 AM_CONDITIONAL(BUILD_MPD, test x$want_mpd = xyes)
162 if test x$want_mpd = xyes; then
163   AC_DEFINE(MPD, 1, [Define if you want MPD support])
164 fi
165
166 dnl
167 dnl XMMS2
168 dnl
169
170 AC_ARG_ENABLE([xmms2],
171               AC_HELP_STRING([--enable-xmms2], [enable if you want XMMS2 support @<:@default=no@:>@]),
172               [want_xmms2="$enableval"], [want_xmms2=no])
173
174 AM_CONDITIONAL(BUILD_XMMS2, test x$want_xmms2 = xyes)
175 if test x$want_xmms2 = xyes; then
176   PKG_CHECK_MODULES([XMMS2], [xmms2-client])
177     CFLAGS="$CFLAGS $XMMS2_CFLAGS"
178     LIBS="$LIBS $XMMS2_LIBS"
179     AC_DEFINE(XMMS2, 1, [Define if you want XMMS2 support])
180 fi
181
182 dnl
183 dnl RSS
184 dnl
185
186 AC_ARG_ENABLE([rss],
187               AC_HELP_STRING([--enable-rss], [enable if you want rss support @<:@default=no@:>@]),
188               [want_rss="$enableval"], [want_rss=no])
189 #
190 AM_CONDITIONAL(BUILD_RSS, test x$want_rss = xyes)
191 if test x$want_rss = xyes; then
192         WANT_GLIB=yes
193         PKG_CHECK_MODULES(RSS, libxml-2.0 libcurl,,exit)
194         CFLAGS="$CFLAGS $RSS_CFLAGS"
195         LIBS="$LIBS $RSS_LIBS"
196         AC_DEFINE(RSS, 1, [Define if you want rss support])
197 fi
198
199 dnl
200 dnl Wireless extensions
201 dnl
202
203 AC_ARG_ENABLE([wlan],
204               AC_HELP_STRING([--enable-wlan], [enable if you want wireless support @<:@default=no@:>@]),
205               [want_wlan="$enableval"], [want_wlan=no])
206 #
207 AM_CONDITIONAL(BUILD_WLAN, test x$want_wlan = xyes)
208 if test x$want_wlan = xyes; then
209   AC_CHECK_HEADERS([iwlib.h], [], AC_MSG_ERROR([iwlib.h header not found]))
210   AC_CHECK_LIB([iw], [iw_sockets_open], [LIBS="$LIBS -liw"], AC_MSG_ERROR([iw_sockets_open not found]))
211         AC_DEFINE(HAVE_IWLIB, 1, [Define if you want wireless support])
212 fi
213
214 dnl
215 dnl IMLIB2
216 dnl
217
218 dnl --commented out until brenden finishes it --
219 dnl AC_ARG_ENABLE([imlib2],
220 dnl    AC_HELP_STRING([--enable-imlib2], [enable if you want Imlib2 support [[default=no]]]),
221 dnl    [want_imlib2="$enableval"], [want_imlib2=no])
222 dnl
223 dnl AM_CONDITIONAL(BUILD_IMLIB2, test x$want_imlib2 = xyes)
224 dnl if test x$want_imlib2 = xyes; then
225 dnl PKG_CHECK_MODULES([Imlib2], [imlib2])
226 dnl CFLAGS="$CFLAGS $Imlib2_CFLAGS"
227 dnl LIBS="$LIBS $Imlib2_LIBS"
228 dnl AC_DEFINE(IMLIB2, 1, [Define if you want Imlib2 support])
229 dnl fi
230
231
232 dnl
233 dnl PORT_MONITORS
234 dnl
235
236 AC_ARG_ENABLE([portmon],
237               AC_HELP_STRING([--disable-portmon], 
238                              [disable if you do not want tcp (ip4) port monitoring @<:@default=yes@:>@]),
239               [want_portmon="$enableval"], [want_portmon=yes])
240
241 if test x"$want_portmon" = xyes; then
242   if test x"$uname" != xLinux; then
243       AC_MSG_NOTICE([port monitors not supported on $uname... disabling])
244       want_portmon=no
245   else
246         AC_CHECK_HEADERS([netdb.h netinet/in.h netinet/tcp.h sys/socket.h arpa/inet.h], [], 
247            [PORT_MONITORS_MISSING=yes])
248         if test x"$PORT_MONITORS_MISSING" = xyes; then
249               AC_MSG_ERROR([missing a needed network header for port monitoring])
250         fi
251         WANT_GLIB=yes
252         AC_DEFINE(TCP_PORT_MONITOR, 1, [Define if you want tcp port monitoring support])
253   fi
254 fi
255 AM_CONDITIONAL(BUILD_PORT_MONITORS, test x"$want_portmon" = xyes)
256
257
258 dnl
259 dnl ICONV
260 dnl
261
262 AM_ICONV
263 if test "$am_cv_func_iconv" != yes; then
264   AC_MSG_WARN([Could not find libiconv])
265 else
266   LIBS="$LIBS $LIBICONV"
267 fi
268
269 dnl
270 dnl debug
271 dnl
272
273 AC_ARG_ENABLE([debug], 
274               AC_HELP_STRING([--enable-debug], [compile with debug symbols @<:@default=no@:>@]),
275               [want_debug="$enableval"], [want_debug=no])
276
277 if test "x$want_debug" = "xyes" -a $ac_cv_c_compiler_gnu != no; then
278   CFLAGS="$CFLAGS -g3"
279   AC_DEFINE([DEBUG], [], [Define for debugging])
280 fi
281
282 dnl
283 dnl X11
284 dnl
285
286 AC_ARG_ENABLE([x11],
287               AC_HELP_STRING([--disable-x11], [disable if you do not want X11 support @<:@default=yes@:>@]),
288               [want_x11="$enableval"], [want_x11=yes])
289
290 AM_CONDITIONAL(BUILD_X11, test x$want_x11 = xyes)
291 if test "x$want_x11" = "xyes"; then
292     if $PKG_CONFIG --exists x11; then
293       PKG_CHECK_MODULES([X11], [x11])
294       CFLAGS="$CFLAGS $X11_CFLAGS"
295       LIBS="$LIBS $X11_LIBS"
296     else
297       dnl non-modular X11 installations
298       AC_PATH_X
299       AC_PATH_XTRA
300       CFLAGS="$CFLAGS $X_CFLAGS"
301       LIBS="$LIBS $X_LIBS"
302       LDFLAGS="$LDFLAGS $LIBS $X_PRE_LIBS"
303       if test "x$no_x" = "xyes"; then
304         AC_MSG_ERROR([Can't locate your X11 installation])
305       fi
306       AC_CHECK_LIB([X11], [XOpenDisplay], [], AC_MSG_ERROR([Could not find XOpenDisplay in -lX11]))
307     fi
308     AC_DEFINE(X11, 1, [Define if you want to use X11])
309 fi
310   
311
312 dnl
313 dnl Xext Double-buffering Extension
314 dnl
315
316 AC_ARG_ENABLE([double_buffer],
317               AC_HELP_STRING([--disable-double-buffer], 
318                              [disable for no Xdbe double-buffering support @<:@default=yes@:>@]),
319               [want_double_buffer="$enableval"], [want_double_buffer=yes])
320
321 if test "x$want_double_buffer" = "xyes"; then
322     if test "x$want_x11" != "xyes"; then
323       dnl silently disable if no x11
324       want_double_buffer=no
325     else 
326       if $PKG_CONFIG --exists xext; then
327         PKG_CHECK_MODULES([XEXT],[xext])
328         CFLAGS="$CFLAGS $XEXT_CFLAGS"
329         LIBS="$LIBS $XEXT_LIBS"
330       else
331         dnl non-modular X11 installation
332         AC_CHECK_LIB([Xext], [XdbeQueryExtension], [LIBS="$LIBS -lXext"], 
333                     AC_MSG_ERROR([Could not find XdbeQueryExtension in -lXext]))
334       fi
335       AC_DEFINE(HAVE_XDBE, 1, [Define for X11 double-buffering])
336     fi
337 fi
338
339
340 dnl
341 dnl Xdamage Extension
342 dnl
343
344 AC_ARG_ENABLE([xdamage],
345               AC_HELP_STRING([--disable-xdamage], 
346                              [disable if you do not want Xdamage support @<:@default=yes@:>@]),
347               [want_xdamage="$enableval"], [want_xdamage=yes])
348
349 if test "x$want_xdamage" = "xyes"; then
350     if test "x$want_x11" != "xyes"; then
351       dnl silently disable if no x11
352       want_xdamage=no
353     else 
354       if $PKG_CONFIG --exists xdamage; then
355         PKG_CHECK_MODULES([XDAMAGE],[xdamage])
356         CFLAGS="$CFLAGS $XDAMAGE_CFLAGS"
357         LIBS="$LIBS $XDAMAGE_LIBS"
358       else
359         dnl non-modular X11 installation
360         AC_CHECK_LIB([Xdamage], [XDamageQueryExtension], [LIBS="$LIBS -lXdamage"],
361                      AC_MSG_ERROR([Could not find XDamageQueryExtension in -lXdamage]))
362       fi
363       AC_DEFINE(HAVE_XDAMAGE, 1, [Define for X11 Xdamage extension])
364     fi
365 fi
366
367
368 dnl
369 dnl Xft
370 dnl
371
372 AC_ARG_ENABLE([xft],
373               AC_HELP_STRING([--disable-xft], [disable if you do not want to use Xft @<:@default=yes@:>@]),
374               [want_xft="$enableval"], [want_xft=yes])
375
376 if test x$want_xft = "xyes"; then
377     if test "x$want_x11" != "xyes"; then
378       dnl silently disable if no x11
379       want_xft=no
380     else 
381       PKG_CHECK_MODULES(XFT, [xft])
382       CFLAGS="$CFLAGS $XFT_CFLAGS"
383       LIBS="$LIBS $XFT_LIBS"
384       AC_DEFINE(XFT, 1, [Define for Xft support])
385     fi
386 fi
387
388 dnl
389 dnl GLIB
390 dnl
391
392 if test x$WANT_GLIB = xyes; then
393         PKG_CHECK_MODULES([GLIB], [glib-2.0])
394         CFLAGS="$CFLAGS $GLIB_CFLAGS"
395         LIBS="$LIBS $GLIB_LIBS"
396 fi
397
398 dnl
399 dnl KVM
400 dnl
401
402 if test x$WANT_KVM = xyes; then
403   AC_CHECK_LIB(kvm, kvm_open,
404     LIBS="$LIBS -lkvm",
405   AC_MSG_ERROR([Could not find kvm_open in -lkvm.])
406   )
407 fi
408
409 dnl
410 dnl devstat
411 dnl
412
413 if test x$WANT_DEVSTAT = xyes; then
414   AC_CHECK_LIB(devstat, devstat_getversion,
415          LIBS="$LIBS -ldevstat",
416          AC_MSG_ERROR([Cound not find devstat_getversion in -ldevstat.])
417   )
418 fi
419
420 dnl
421 dnl OSSLIB for NetBSD/OpenBSD
422 dnl
423
424 if test x$WANT_OSSLIB = xyes; then
425     AC_CHECK_LIB(ossaudio, _oss_ioctl,
426   LIBS="$LIBS -lossaudio",
427   AC_MSG_ERROR([Could not find oss_ioctl in -lossaudio.])
428     )
429 fi
430
431 dnl
432 dnl Some headers
433 dnl
434
435 AC_CHECK_HEADERS([signal.h unistd.h sys/utsname.h sys/stat.h linux/soundcard.h dirent.h mcheck.h \
436       sys/statfs.h sys/param.h pthread.h assert.h errno.h time.h])
437 AC_CHECK_HEADERS([sys/mount.h], [], [],
438      [#ifdef HAVE_SYS_PARAM_H
439       #include <sys/param.h>
440       #endif
441       ])
442
443 AC_DEFINE([_GNU_SOURCE], [], [Define for GNU source and extensions])
444
445 dnl
446 dnl Some functions
447 dnl
448
449 AC_CHECK_FUNCS([calloc malloc free popen sysinfo getloadavg memrchr])
450 AC_SEARCH_LIBS(clock_gettime, [rt], 
451                [AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define if you have clock_gettime()])],
452                [AC_CHECK_FUNCS([gettimeofday], [], [AC_MSG_ERROR([gettimeofday() not available!])])], [])
453
454
455 dnl
456 dnl Check for zlib
457 dnl
458
459 AC_CHECK_HEADER(zlib.h,
460                 [],
461                 [AC_MSG_ERROR([zlib is missing; please install the headers first])])
462
463
464 dnl
465 dnl Check doc stuff
466 dnl
467
468 AC_CHECK_PROGS(db2x_xsltproc_cmd, db2x_xsltproc)
469 AC_CHECK_PROGS(db2x_manxml_cmd, db2x_manxml)
470 AC_CHECK_PROGS(xsltproc_cmd, xsltproc)
471 if test x$db2x_xsltproc_cmd = "x" -o x$xsltproc_cmd = "x"; then
472   AM_CONDITIONAL(HAVE_DOCSTUFF, false)
473 else
474   AM_CONDITIONAL(HAVE_DOCSTUFF, true)
475 fi
476
477
478 dnl
479 dnl kstat in Solaris
480 dnl
481
482 if test x$WANT_KSTAT = xyes; then
483   dah=no
484   AC_CHECK_LIB([kstat], [kstat_open], [dah=yes], [])
485
486   if test x$dah = xyes; then
487     AC_DEFINE(HAVE_KSTAT, 1, [Define if you have kstat (Solaris)])
488     LDFLAGS="$LDFLAGS -lkstat"
489   fi
490 fi
491
492 AC_DEFUN([AM_LANGINFO_CODESET],
493 [
494   AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset,
495     [AC_TRY_LINK([#include <langinfo.h>],
496       [char* cs = nl_langinfo(CODESET);],
497       am_cv_langinfo_codeset=yes,
498       am_cv_langinfo_codeset=no)
499     ])
500   if test $am_cv_langinfo_codeset = yes; then
501     AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
502       [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
503   fi
504 ])
505
506
507 dnl ************************
508 dnl * Linker optimizations *
509 dnl ************************
510 AC_MSG_CHECKING([if $LD accepts -O1])
511 case `$LD -O1 -v 2>&1 </dev/null` in
512 *GNU* | *BSD*)
513   LDFLAGS="$LDFLAGS -Wl,-O1"
514   AC_MSG_RESULT([yes])
515   ;;
516 *)
517   AC_MSG_RESULT([no])
518   ;;
519 esac
520
521
522 dnl
523 dnl Da.
524 dnl
525
526 CFLAGS="$CFLAGS -Wall -W"
527
528 AC_SUBST(CFLAGS)
529 AC_SUBST(X11_LIBS)
530
531 AC_OUTPUT
532
533 dnl
534 dnl Print summary
535 dnl
536 cat << EOF
537
538 $PACKAGE $VERSION configured successfully:
539
540  Installing into:   $prefix
541  C compiler flags:  $CFLAGS
542  Linker flags:      $LDFLAGS
543  Libraries:         $LIBS
544
545  * x11:
546   x11 support:      $want_x11
547   xdamage support:  $want_xdamage
548   xdbe support:     $want_double_buffer
549   xft support:      $want_xft
550
551  * music detection:
552   audacious:        $want_audacious
553   bmpx:             $want_bmpx
554   mpd:              $want_mpd
555   xmms2:            $want_xmms2
556
557  * general:
558   hddtemp:          $want_hddtemp
559   portmon:          $want_portmon  
560   RSS:              $want_rss
561   wireless:         $want_wlan
562 EOF