# HG changeset patch # User nenolod # Date 1155010700 25200 # Node ID 0c5dc8ffcc425fafef35ec53756db40a62272016 # Parent 1890cc16419f8763b4d742b6fcdb16a35160826e [svn] - hook up paranormal -- client interface code doesn't exist yet though diff -r 1890cc16419f -r 0c5dc8ffcc42 ChangeLog --- a/ChangeLog Mon Aug 07 17:18:08 2006 -0700 +++ b/ChangeLog Mon Aug 07 21:18:20 2006 -0700 @@ -1,3 +1,11 @@ +2006-08-08 00:18:08 +0000 Giacomo Lozito + revision [1948] + - why wma tags were not converted to utf8? by the way, this made libnotify crash when wma tuple contained non-utf8 strings + + Changes: Modified: + +6 -5 trunk/Plugins/Input/wma/wma.c + + 2006-08-07 23:34:31 +0000 Giacomo Lozito revision [1946] - when audacious is started and track detail on current song are requested, try to check if a decoder exists before falling back to the tuple display dialog diff -r 1890cc16419f -r 0c5dc8ffcc42 Plugins/Visualization/paranormal/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Plugins/Visualization/paranormal/Makefile Mon Aug 07 21:18:20 2006 -0700 @@ -0,0 +1,6 @@ +include ../../../mk/rules.mk +include ../../../mk/objective.mk + +SUBDIRS = pn + + diff -r 1890cc16419f -r 0c5dc8ffcc42 configure.ac --- a/configure.ac Mon Aug 07 17:18:08 2006 -0700 +++ b/configure.ac Mon Aug 07 21:18:20 2006 -0700 @@ -908,7 +908,39 @@ dnl *** End of Scrobbler checks *** +dnl *** libparanormal checks + +AC_ARG_ENABLE(paranormal, +[ --disable-paranormal disable paranormal vis plugin. (default=enabled)], +[have_paranormal=$enableval], +[ + 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(SDL, , [ + AC_MSG_WARN([*** SDL is not installed. Paranormal will not be built. ***]) + have_paranormal="no" + ]) + + AM_PATH_XML2(2.0.0, , [ + AC_MSG_WARN([*** libxml2 is not installed. Paranormal will not be built. ***]) + have_paranormal="no" + ]) + fi +] +) + +if test "$have_paranormal" = "yes"; then + VISUALIZATION_PLUGINS="$VISUALIZATION_PLUGINS paranormal" +fi + +dnl *** End of all plugin checks *** + AC_SUBST(ARCH_DEFINES) + +dnl XXX delete ASAP -nenolod AM_CONDITIONAL(ARCH_X86, test "x$arch_type" = "xix86") AM_CONDITIONAL(USE_X86ASM, test "x$x86_asm" = xyes) AM_CONDITIONAL(HAVE_SOLARIS, test "x$have_solaris" = xyes) @@ -1112,6 +1144,7 @@ echo " Visualization" echo " -------------" echo " Blur Scope: yes" +echo " Paranormal Visualization Library: $have_paranormal" echo if test "$beep_cv_lib_xlibs_threadsafe" = "no"; then