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