changelog
[monky] / configure.in
index ab2cb39..1222b67 100644 (file)
@@ -1,6 +1,6 @@
-AC_INIT([Conky],[1.3.5],[brenden1@users.sourceforge.net])
+AC_INIT([Conky],[1.3.6_CVS_20060105],[brenden1@users.sourceforge.net])
 
-AM_INIT_AUTOMAKE(conky, 1.3.5)
+AM_INIT_AUTOMAKE(conky, 1.3.6_CVS_20060105)
 AM_CONFIG_HEADER(src/config.h)
 AC_PROG_LIBTOOL
 
@@ -49,7 +49,7 @@ dnl
 
 want_xft=yes
 AC_ARG_ENABLE(xft,
-[  --enable-xft            enable if you want to use Xft [[default=no]]],
+[  --enable-xft            enable if you want to use Xft [[default=yes]]],
   [want_xft="$enableval"])
 
 dnl
@@ -71,7 +71,7 @@ dnl
 
 dah=yes
 AC_ARG_ENABLE(proc_uptime,
-[  --enable-proc-uptime    enable using /proc/uptime for uptime [[default=no]]],
+[  --enable-proc-uptime    enable using /proc/uptime for uptime [[default=yes]]],
   [dah="$enableval"])
 
 if test $dah = "yes"; then
@@ -105,7 +105,7 @@ dnl
 
 want_seti=yes
 AC_ARG_ENABLE(seti,
-[  --enable-seti           enable if you want SETI at Home stats [[default=no]]],
+[  --enable-seti           enable if you want SETI at Home stats [[default=yes]]],
   [want_seti="$enableval"])
 
 AM_CONDITIONAL(BUILD_SETI, test x$want_seti = xyes)
@@ -119,7 +119,7 @@ dnl
 
 want_mpd=yes
 AC_ARG_ENABLE(mpd,
-[  --enable-mpd            enable if you want MPD support [[default=no]]],
+[  --enable-mpd            enable if you want MPD support [[default=yes]]],
   [want_mpd="$enableval"])
 
 AM_CONDITIONAL(BUILD_MPD, test x$want_mpd = xyes)
@@ -128,12 +128,26 @@ if test x$want_mpd = xyes; then
 fi
 
 dnl
+dnl INFOPIPE
+dnl
+
+want_infopipe=yes
+AC_ARG_ENABLE(infopipe,
+[  --enable-infopipe       enable if you want XMMS/BMP InfoPipe support [[default=no]]],
+  [want_infopipe="$enableval"])
+
+AM_CONDITIONAL(BUILD_INFOPIPE, test x$want_infopipe = xyes)
+if test x$want_infopipe = xyes; then
+  AC_DEFINE(INFOPIPE, 1, [Define if you want XMMS/BMP InfoPipe support])
+fi
+
+dnl
 dnl PORT_MONITORS
 dnl
 
 want_portmon=yes
 AC_ARG_ENABLE(portmon,
-[  --enable-portmon        enable if you want tcp (ip4) port monitoring [[default=no]]],
+[  --enable-portmon        enable if you want tcp (ip4) port monitoring [[default=yes]]],
   [want_portmon="$enableval"])
 
 AM_CONDITIONAL(BUILD_PORT_MONITORS, test x$want_portmon = xyes)