changeset 1746:40e2d429a1f1 trunk

[svn] - remove some plugin checks I missed
author nenolod
date Mon, 18 Sep 2006 13:03:22 -0700
parents 225d3ee03de8
children 44ed31f63ee4
files ChangeLog configure.ac
diffstat 2 files changed, 10 insertions(+), 68 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Sep 18 12:59:14 2006 -0700
+++ b/ChangeLog	Mon Sep 18 13:03:22 2006 -0700
@@ -1,3 +1,13 @@
+2006-09-18 19:59:14 +0000  William Pitcock <nenolod@nenolod.net>
+  revision [2427]
+  - add a bugs@ address for audacious
+  - remove some unused --with/--enable arguments
+  
+
+  Changes:        Modified:
+  +1 -43          trunk/configure.ac  
+
+
 2006-09-18 10:20:15 +0000  William Pitcock <nenolod@nenolod.net>
   revision [2425]
   - add -D_AUDACIOUS_CORE here
--- a/configure.ac	Mon Sep 18 12:59:14 2006 -0700
+++ b/configure.ac	Mon Sep 18 13:03:22 2006 -0700
@@ -308,74 +308,6 @@
     ;;
 esac
 
-dnl *** Scrobbler ***
-
-scrobbler="yes"
-
-dnl Checks for libmusicbrainz
-PKG_CHECK_MODULES(MUSICBRAINZ, [libmusicbrainz >= 2.0.0], , [scrobbler="no"])
-
-dnl libcurl check
-
-my_cv_curl_vers=NONE
-dnl check is the plain-text version of the required version
-check="7.9.7"
-dnl check_hex must be UPPERCASE if any hex letters are present
-check_hex="070907"
-
-AC_MSG_CHECKING([for curl >= $check])
-
-PKG_CHECK_MODULES(CURL, [libcurl >= 7.9.7], , [scrobbler="no"])
-
-if test "x$scrobbler" = "xyes"; then
-	GENERAL_PLUGINS="$GENERAL_PLUGINS scrobbler"
-fi
-
-AC_SUBST(CURL_CFLAGS)
-AC_SUBST(CURL_LIBS)
-AC_SUBST(MUSICBRAINZ_LIBS)
-
-dnl *** End of Scrobbler checks ***
-
-dnl *** libparanormal checks
-
-AC_ARG_ENABLE(paranormal,
-[  --disable-paranormal    disable paranormal vis plugin. (default=enabled)],
-[have_paranormal=$enableval],
-[have_paranormal=yes])
-
-if test "x$ap_disable_paranormal" = "xyes"; then
-    have_paranormal=no
-    AC_MSG_RESULT([*** paranormal plugin disabled by request ***])
-else
-    have_paranormal=yes
-    AM_PATH_SDL(1.2.5, , [
-	AC_MSG_WARN([*** SDL is not installed. Paranormal will not be built. ***])
-	have_paranormal="no"
-    ])
-fi
-
-AC_ARG_ENABLE(xspf,
-[  --disable-xspf          disable XSPF support. (default=enabled)],
-[have_xspf=$enableval], [have_xspf=yes])
-
-AM_PATH_XML2(2.0.0, , [
-	AC_MSG_WARN([*** libxml2 is not installed. Paranormal nor XSPF support will not be built. ***])
-	have_paranormal="no"
-	have_xspf="no"
-])
-
-if test "$have_paranormal" = "yes"; then
-	VISUALIZATION_PLUGINS="$VISUALIZATION_PLUGINS paranormal"
-fi
-
-if test "$have_xspf" = "yes"; then
-	CONTAINER_PLUGINS="$CONTAINER_PLUGINS xspf"
-	AC_DEFINE(HAVE_XSPF_PLAYLIST, 1, [Define if XSPF playlists are available.])
-fi
-
-dnl *** End of all plugin checks ***
-
 AC_SUBST(ARCH_DEFINES)
 
 dnl XXX delete ASAP -nenolod