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