added suto-detection for xmms stuff
[monky] / configure.in
index 923705d..cb64b57 100644 (file)
@@ -1,8 +1,9 @@
-AC_INIT([Conky],[1.3.6_CVS_20060106],[brenden1@users.sourceforge.net])
+AC_INIT([Conky],[1.3.6_CVS_20060108],[brenden1@users.sourceforge.net])
 
-AM_INIT_AUTOMAKE(conky, 1.3.6_CVS_20060106)
+AM_INIT_AUTOMAKE(conky, 1.3.6_CVS_20060108)
 AM_CONFIG_HEADER(src/config.h)
 AC_PROG_LIBTOOL
+PKG_PROG_PKG_CONFIG([0.17.2])
 
 
 AC_CONFIG_FILES(
@@ -79,6 +80,149 @@ if test $dah = "yes"; then
 fi
 
 dnl
+dnl XMMS (Version 1)
+dnl
+
+want_xmms=auto
+AC_ARG_ENABLE(xmms,
+   [  --enable-xmms           enable xmms (ver. 1) media player support [[default=auto]]],
+   [want_xmms="$enableval"])
+
+case x$want_xmms in
+    xauto)
+        want_xmms=no
+        ;;
+    xyes)
+        echo "Sorry, xmms isn't supported yet"
+        exit -1
+        AC_DEFINE(XMMS, 1, [Define for XMMS Version 1 support])           
+       ;;
+    xno)
+        ;;
+    *)
+        echo "Error: invalid bmp parameter specified: $want_bmp"
+        exit -1
+        ;;
+esac
+AM_CONDITIONAL(BUILD_XMMS, test x$want_xmms = xyes)
+
+dnl
+dnl BMP (through 0.9.7.1)
+dnl
+
+want_bmp=auto
+AC_ARG_ENABLE(bmp,
+   [  --enable-bmp            enable beep media media player support [[default=auto]]],
+   [want_bmp="$enableval"])
+
+case x$want_bmp in
+    xauto)
+        want_bmp=yes
+        PKG_CHECK_MODULES([BMP], [glib-2.0 >= 2.0], [], [want_bmp=no])
+        if test x$want_bmp = xyes; then
+            AC_CHECK_HEADERS([dlfcn.h], [], [want_bmp=no])
+            if test x$want_bmp = xyes; then
+                AC_CHECK_LIB(dl, dlopen, [LIBS="$LIBS -ldl"],
+                                         [AC_CHECK_LIB(c,dlopen,[LIBS="$LIBS -lc"],
+                                                                 [want_bmp=no])])
+                if test x$want_bmp = xyes; then
+                     CFLAGS="$CFLAGS $BMP_CFLAGS"
+                     LIBS="$LIBS $BMP_LIBS"
+                     AC_DEFINE(BMP, 1, [Define for Beep Media Player support])
+                fi
+            fi
+        fi
+        ;;
+    xyes)
+        PKG_CHECK_MODULES([BMP], [glib-2.0 >= 2.0])
+        CFLAGS="$CFLAGS $BMP_CFLAGS"
+        LIBS="$LIBS $BMP_LIBS"
+        AC_CHECK_HEADERS([dlfcn.h], [],
+             [AC_MSG_ERROR(["dlfcn.h not found: dynamic library loading not supported"])])
+        AC_CHECK_LIB(dl, dlopen, [LIBS="$LIBS -ldl"],
+                                 [AC_CHECK_LIB(c,dlopen,[LIBS="$LIBS -lc"],
+                                                        [AC_MSG_ERROR([dlopen() not available])])])
+        AC_DEFINE(BMP, 1, [Define for Beep Media Player support])
+        ;;
+    xno)
+        ;;
+    *)
+        echo "Error: invalid bmp parameter specified: $want_bmp"
+        exit -1
+        ;;
+esac
+AM_CONDITIONAL(BUILD_BMP, test x$want_bmp = xyes)
+
+dnl
+dnl Audacious Media Player
+dnl
+
+want_audacious=auto
+AC_ARG_ENABLE(audacious,
+   [  --enable-audacious      enable audacious player support [[default=auto]]],
+   [want_audacious="$enableval"])
+
+case x$want_audacious in
+    xauto)
+        want_audacious=yes
+        PKG_CHECK_MODULES([AUDACIOUS], [glib-2.0 >= 2.0], [], [want_audacious=no])  
+       if test x$want_audacious = xyes; then
+           AC_CHECK_HEADERS([dlfcn.h], [], [want_audacious=no])
+           if test x$want_audacious = xyes; then
+               AC_CHECK_LIB(dl, dlopen, [LIBS="$LIBS -ldl"], 
+                                         [AC_CHECK_LIB(c,dlopen,[LIBS="$LIBS -lc"],
+                                                                [want_audacious=no])])
+               if test x$want_audacious = xyes; then
+                    CFLAGS="$CFLAGS $AUDACIOUS_CFLAGS"
+                    LIBS="$LIBS $AUDACIOUS_LIBS"
+                    AC_DEFINE(AUDACIOUS, 1, [Define for Audacious support])
+               fi
+           fi
+        fi
+        ;;
+    xyes)
+        PKG_CHECK_MODULES([AUDACIOUS], [glib-2.0 >= 2.0])
+        CFLAGS="$CFLAGS $AUDACIOUS_CFLAGS"
+        LIBS="$LIBS $AUDACIOUS_LIBS"
+        AC_CHECK_HEADERS([dlfcn.h], [], 
+             [AC_MSG_ERROR(["dlfcn.h not found: dynamic library loading not supported"])])
+       AC_CHECK_LIB(dl, dlopen, [LIBS="$LIBS -ldl"], 
+                                 [AC_CHECK_LIB(c,dlopen,[LIBS="$LIBS -lc"], 
+                                                        [AC_MSG_ERROR([dlopen() not available])])])
+        AC_DEFINE(AUDACIOUS, 1, [Define for Audacious support])
+        ;;
+    xno)
+       ;;
+    *)
+        echo "Error: invalid audacious parameter specified: $want_audacious"
+        exit -1
+       ;;
+esac
+AM_CONDITIONAL(BUILD_AUDACIOUS, test x$want_audacious = xyes)
+
+dnl
+dnl InfoPipe (Version 1.3)
+dnl
+
+want_infopipe=yes
+AC_ARG_ENABLE(infopipe,
+   [  --enable-infopipe       enable xmms/bmp infopipe support [[default=yes]]],
+   [want_infopipe="$enableval"])
+
+case x$want_infopipe in
+    xyes)
+        AC_DEFINE(INFOPIPE, 1, [Define for InfoPipe support])
+        ;;
+    xno)
+        ;;
+    *)
+        echo "Error: invalid infopipe parameter specified: $want_infopipe"
+        exit -1
+        ;;
+esac
+AM_CONDITIONAL(BUILD_INFOPIPE, test x$want_infopipe = xyes)
+
+dnl
 dnl BMPx
 dnl
 
@@ -128,20 +272,6 @@ 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=yes]]],
-  [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