conky 1.4.6-svn trunk
[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], [6])
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
183 dnl
184 dnl IMLIB2
185 dnl
186
187 dnl --commented out until brenden finishes it --
188 dnl AC_ARG_ENABLE([imlib2],
189 dnl    AC_HELP_STRING([--enable-imlib2], [enable if you want Imlib2 support [[default=no]]]),
190 dnl    [want_imlib2="$enableval"], [want_imlib2=no])
191 dnl
192 dnl AM_CONDITIONAL(BUILD_IMLIB2, test x$want_imlib2 = xyes)
193 dnl if test x$want_imlib2 = xyes; then
194 dnl PKG_CHECK_MODULES([Imlib2], [imlib2])
195 dnl CFLAGS="$CFLAGS $Imlib2_CFLAGS"
196 dnl LIBS="$LIBS $Imlib2_LIBS"
197 dnl AC_DEFINE(IMLIB2, 1, [Define if you want Imlib2 support])
198 dnl fi
199
200
201 dnl
202 dnl PORT_MONITORS
203 dnl
204
205 AC_ARG_ENABLE([portmon],
206               AC_HELP_STRING([--disable-portmon], 
207                              [disable if you do not want tcp (ip4) port monitoring @<:@default=yes@:>@]),
208               [want_portmon="$enableval"], [want_portmon=yes])
209
210 AM_CONDITIONAL(BUILD_PORT_MONITORS, test x$want_portmon = xyes)
211 if test x$want_portmon = xyes; then
212   if test "x$uname" != xLinux; then
213       AC_MSG_NOTICE([port monitors not supported on $uname... disabling])
214       want_portmon=no
215   else
216         AC_CHECK_HEADERS([netdb.h netinet/in.h netinet/tcp.h sys/socket.h arpa/inet.h], [], 
217            [PORT_MONITORS_MISSING=yes])
218         if test "x$PORT_MONITORS_MISSING" = xyes; then
219               AC_MSG_ERROR([missing a needed network header for port monitoring])
220         fi
221       PKG_CHECK_MODULES([GLIB], [glib-2.0])
222       CFLAGS="$CFLAGS $GLIB_CFLAGS"
223       LIBS="$LIBS $GLIB_LIBS"
224         AC_DEFINE(TCP_PORT_MONITOR, 1, [Define if you want tcp port monitoring support])
225   fi
226 fi
227
228
229 dnl
230 dnl ICONV
231 dnl
232
233 AM_ICONV
234 if test "$am_cv_func_iconv" != yes; then
235   AC_MSG_WARN([Could not find libiconv])
236 else
237   LIBS="$LIBS $LIBICONV"
238 fi
239
240 dnl
241 dnl debug
242 dnl
243
244 AC_ARG_ENABLE([debug], 
245               AC_HELP_STRING([--enable-debug], [compile with debug symbols @<:@default=no@:>@]),
246               [want_debug="$enableval"], [want_debug=no])
247
248 if test "x$want_debug" = "xyes" -a $ac_cv_c_compiler_gnu != no; then
249   CFLAGS="$CFLAGS -g3"
250   AC_DEFINE([DEBUG], [], [Define for debugging])
251 fi
252
253 dnl
254 dnl X11
255 dnl
256
257 AC_ARG_ENABLE([x11],
258               AC_HELP_STRING([--disable-x11], [disable if you do not want X11 support @<:@default=yes@:>@]),
259               [want_x11="$enableval"], [want_x11=yes])
260
261 AM_CONDITIONAL(BUILD_X11, test x$want_x11 = xyes)
262 if test "x$want_x11" = "xyes"; then
263     if $PKG_CONFIG --exists x11; then
264       PKG_CHECK_MODULES([X11], [x11])
265       CFLAGS="$CFLAGS $X11_CFLAGS"
266       LIBS="$LIBS $X11_LIBS"
267     else
268       dnl non-modular X11 installations
269       AC_PATH_X
270       AC_PATH_XTRA
271       CFLAGS="$CFLAGS $X_CFLAGS"
272       LIBS="$LIBS $X_LIBS"
273       LDFLAGS="$LDFLAGS $LIBS $X_PRE_LIBS"
274       if test "x$no_x" = "xyes"; then
275         AC_MSG_ERROR([Can't locate your X11 installation])
276       fi
277       AC_CHECK_LIB([X11], [XOpenDisplay], [], AC_MSG_ERROR([Could not find XOpenDisplay in -lX11]))
278     fi
279     AC_DEFINE(X11, 1, [Define if you want to use X11])
280 fi
281   
282
283 dnl
284 dnl Xext Double-buffering Extension
285 dnl
286
287 AC_ARG_ENABLE([double_buffer],
288               AC_HELP_STRING([--disable-double-buffer], 
289                              [disable for no Xdbe double-buffering support @<:@default=yes@:>@]),
290               [want_double_buffer="$enableval"], [want_double_buffer=yes])
291
292 if test "x$want_double_buffer" = "xyes"; then
293     if test "x$want_x11" != "xyes"; then
294       dnl silently disable if no x11
295       want_double_buffer=no
296     else 
297       if $PKG_CONFIG --exists xext; then
298         PKG_CHECK_MODULES([XEXT],[xext])
299         CFLAGS="$CFLAGS $XEXT_CFLAGS"
300         LIBS="$LIBS $XEXT_LIBS"
301       else
302         dnl non-modular X11 installation
303         AC_CHECK_LIB([Xext], [XdbeQueryExtension], [LIBS="$LIBS -lXext"], 
304                     AC_MSG_ERROR([Could not find XdbeQueryExtension in -lXext]))
305       fi
306       AC_DEFINE(HAVE_XDBE, 1, [Define for X11 double-buffering])
307     fi
308 fi
309
310
311 dnl
312 dnl Xdamage Extension
313 dnl
314
315 AC_ARG_ENABLE([xdamage],
316               AC_HELP_STRING([--disable-xdamage], 
317                              [disable if you do not want Xdamage support @<:@default=yes@:>@]),
318               [want_xdamage="$enableval"], [want_xdamage=yes])
319
320 if test "x$want_xdamage" = "xyes"; then
321     if test "x$want_x11" != "xyes"; then
322       dnl silently disable if no x11
323       want_xdamage=no
324     else 
325       if $PKG_CONFIG --exists xdamage; then
326         PKG_CHECK_MODULES([XDAMAGE],[xdamage])
327         CFLAGS="$CFLAGS $XDAMAGE_CFLAGS"
328         LIBS="$LIBS $XDAMAGE_LIBS"
329       else
330         dnl non-modular X11 installation
331         AC_CHECK_LIB([Xdamage], [XDamageQueryExtension], [LIBS="$LIBS -lXdamage"],
332                      AC_MSG_ERROR([Could not find XDamageQueryExtension in -lXdamage]))
333       fi
334       AC_DEFINE(HAVE_XDAMAGE, 1, [Define for X11 Xdamage extension])
335     fi
336 fi
337
338
339 dnl
340 dnl Xft
341 dnl
342
343 AC_ARG_ENABLE([xft],
344               AC_HELP_STRING([--disable-xft], [disable if you do not want to use Xft @<:@default=yes@:>@]),
345               [want_xft="$enableval"], [want_xft=yes])
346
347 if test x$want_xft = "xyes"; then
348     if test "x$want_x11" != "xyes"; then
349       dnl silently disable if no x11
350       want_xft=no
351     else 
352       PKG_CHECK_MODULES(XFT, [xft])
353       CFLAGS="$CFLAGS $XFT_CFLAGS"
354       LIBS="$LIBS $XFT_LIBS"
355       AC_DEFINE(XFT, 1, [Define for Xft support])
356     fi
357 fi
358
359
360 dnl
361 dnl KVM
362 dnl
363
364 if test x$WANT_KVM = xyes; then
365   AC_CHECK_LIB(kvm, kvm_open,
366     LIBS="$LIBS -lkvm",
367   AC_MSG_ERROR([Could not find kvm_open in -lkvm.])
368   )
369 fi
370
371 dnl
372 dnl devstat
373 dnl
374
375 if test x$WANT_DEVSTAT = xyes; then
376   AC_CHECK_LIB(devstat, devstat_getversion,
377          LIBS="$LIBS -ldevstat",
378          AC_MSG_ERROR([Cound not find devstat_getversion in -ldevstat.])
379   )
380 fi
381
382 dnl
383 dnl OSSLIB for NetBSD/OpenBSD
384 dnl
385
386 if test x$WANT_OSSLIB = xyes; then
387     AC_CHECK_LIB(ossaudio, _oss_ioctl,
388   LIBS="$LIBS -lossaudio",
389   AC_MSG_ERROR([Could not find oss_ioctl in -lossaudio.])
390     )
391 fi
392
393 dnl
394 dnl Some headers
395 dnl
396
397 AC_CHECK_HEADERS([signal.h unistd.h sys/utsname.h sys/stat.h linux/soundcard.h dirent.h mcheck.h \
398       sys/statfs.h sys/param.h pthread.h assert.h errno.h time.h])
399 AC_CHECK_HEADERS([sys/mount.h], [], [],
400      [#ifdef HAVE_SYS_PARAM_H
401       #include <sys/param.h>
402       #endif
403       ])
404
405 AC_DEFINE([_GNU_SOURCE], [], [Define for GNU source and extensions])
406
407 dnl
408 dnl Some functions
409 dnl
410
411 AC_CHECK_FUNCS([calloc malloc free popen sysinfo getloadavg memrchr])
412 AC_SEARCH_LIBS(clock_gettime, [rt], 
413                [AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define if you have clock_gettime()])],
414                [AC_CHECK_FUNCS([gettimeofday], [], [AC_MSG_ERROR([gettimeofday() not available!])])], [])
415
416
417 dnl
418 dnl Check for zlib
419 dnl
420
421 AC_CHECK_HEADER(zlib.h,
422                 [],
423                 [AC_MSG_ERROR([zlib is missing; please install the headers first])])
424
425
426 dnl
427 dnl Check doc stuff
428 dnl
429
430 AC_CHECK_PROGS(db2x_xsltproc_cmd, db2x_xsltproc)
431 AC_CHECK_PROGS(db2x_manxml_cmd, db2x_manxml)
432 AC_CHECK_PROGS(xsltproc_cmd, xsltproc)
433 if test x$db2x_xsltproc_cmd = "x" -o x$xsltproc_cmd = "x"; then
434   AM_CONDITIONAL(HAVE_DOCSTUFF, false)
435 else
436   AM_CONDITIONAL(HAVE_DOCSTUFF, true)
437 fi
438
439
440 dnl
441 dnl kstat in Solaris
442 dnl
443
444 if test x$WANT_KSTAT = xyes; then
445   dah=no
446   AC_CHECK_LIB([kstat], [kstat_open], [dah=yes], [])
447
448   if test x$dah = xyes; then
449     AC_DEFINE(HAVE_KSTAT, 1, [Define if you have kstat (Solaris)])
450     LDFLAGS="$LDFLAGS -lkstat"
451   fi
452 fi
453
454 AC_DEFUN([AM_LANGINFO_CODESET],
455 [
456   AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset,
457     [AC_TRY_LINK([#include <langinfo.h>],
458       [char* cs = nl_langinfo(CODESET);],
459       am_cv_langinfo_codeset=yes,
460       am_cv_langinfo_codeset=no)
461     ])
462   if test $am_cv_langinfo_codeset = yes; then
463     AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
464       [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
465   fi
466 ])
467
468
469 dnl ************************
470 dnl * Linker optimizations *
471 dnl ************************
472 AC_MSG_CHECKING([if $LD accepts -O1])
473 case `$LD -O1 -v 2>&1 </dev/null` in
474 *GNU* | *BSD*)
475   LDFLAGS="$LDFLAGS -Wl,-O1"
476   AC_MSG_RESULT([yes])
477   ;;
478 *)
479   AC_MSG_RESULT([no])
480   ;;
481 esac
482
483
484 dnl
485 dnl Da.
486 dnl
487
488 CFLAGS="$CFLAGS -Wall -W"
489
490 AC_SUBST(CFLAGS)
491 AC_SUBST(X11_LIBS)
492
493 AC_OUTPUT
494
495 dnl
496 dnl Print summary
497 dnl
498 cat << EOF
499
500 $PACKAGE $VERSION configured successfully:
501
502  Installing into:   $prefix
503  C compiler flags:  $CFLAGS
504  Linker flags:      $LDFLAGS
505  Libraries:         $LIBS
506
507  * x11:
508   x11 support:      $want_x11
509   xdamage support:  $want_xdamage
510   xdbe support:     $want_double_buffer
511   xft support:      $want_xft
512
513  * music detection:
514   audacious:        $want_audacious
515   bmpx:             $want_bmpx
516   mpd:              $want_mpd
517   xmms2:            $want_xmms2
518
519  * general:
520   hddtemp:          $want_hddtemp
521   portmon:          $want_portmon  
522 EOF