# HG changeset patch # User nenolod # Date 1158609975 25200 # Node ID 44ed31f63ee438b94ee78d822851598614b09f47 # Parent 40e2d429a1f19a02fe7352fc84cf3f7acd3b0071 [svn] - add back a test for libxml2, that way we'll still use xspf as default if available diff -r 40e2d429a1f1 -r 44ed31f63ee4 ChangeLog --- a/ChangeLog Mon Sep 18 13:03:22 2006 -0700 +++ b/ChangeLog Mon Sep 18 13:06:15 2006 -0700 @@ -1,3 +1,12 @@ +2006-09-18 20:03:22 +0000 William Pitcock + revision [2429] + - remove some plugin checks I missed + + + Changes: Modified: + +0 -68 trunk/configure.ac + + 2006-09-18 19:59:14 +0000 William Pitcock revision [2427] - add a bugs@ address for audacious diff -r 40e2d429a1f1 -r 44ed31f63ee4 configure.ac --- a/configure.ac Mon Sep 18 13:03:22 2006 -0700 +++ b/configure.ac Mon Sep 18 13:06:15 2006 -0700 @@ -366,6 +366,19 @@ AC_SUBST(BEEP_DEFINES) +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_xspf="no" +]) + +if test "$have_xspf" = "yes"; then + AC_DEFINE(HAVE_XSPF_PLAYLIST, 1, [Define if XSPF playlists are available.]) +fi + AC_SUBST(beepdir) AC_SUBST(plugindir)