# HG changeset patch # User nenolod # Date 1176241405 25200 # Node ID 35ec41daad528cddda44621d35699265433a3179 # Parent a5752784d87bf953a30a2f3e134fda82ef200b8a [svn] - allow AOSD to be forcefully enabled diff -r a5752784d87b -r 35ec41daad52 ChangeLog --- a/ChangeLog Tue Apr 10 14:19:15 2007 -0700 +++ b/ChangeLog Tue Apr 10 14:43:25 2007 -0700 @@ -1,3 +1,11 @@ +2007-04-10 21:19:15 +0000 William Pitcock + revision [1992] + - chase audacious r4268 (patch by Joker). + + trunk/src/cue/cuesheet.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + + 2007-04-09 18:12:20 +0000 Ralf Ertzinger revision [1990] diff -r a5752784d87b -r 35ec41daad52 configure.ac --- a/configure.ac Tue Apr 10 14:19:15 2007 -0700 +++ b/configure.ac Tue Apr 10 14:43:25 2007 -0700 @@ -384,7 +384,7 @@ AC_ARG_ENABLE(aosd, [ --disable-aosd disable Audacious OSD plugin (default=enabled)], [enable_aosd=$enableval], - [enable_aosd="yes"] + [enable_aosd="guess"] ) AC_ARG_ENABLE(aosd_xcomp, @@ -393,7 +393,7 @@ [enable_aosd_xcomp="yes"] ) -if test "x$enable_aosd" = "xyes"; then +if test "x$enable_aosd" = "xguess"; then have_aosd="yes" PKG_CHECK_MODULES(PANGO,[pango >= 1.14.7],, [have_aosd="no" @@ -421,10 +421,26 @@ else AC_MSG_RESULT([*** X Composite support for Audacious OSD plugin disabled per user request ***]) have_aosd_xcomp="no" - fi + fi else - AC_MSG_RESULT([*** Audacious OSD plugin disabled per user request ***]) - have_aosd="no" + if test "x$enable_aosd" = "xyes"; then + AC_MSG_RESULT([*** Audacious OSD plugin has been forcefully enabled ***]) + have_aosd="yes" + if test "x$enable_aosd_xcomp" = "xyes"; then + have_aosd_xcomp="yes" + PKG_CHECK_MODULES(XCOMPOSITE, xcomposite, + [AC_DEFINE([HAVE_XCOMPOSITE],[],[X Composite extension available])], + [have_aosd_xcomp="no" + AC_MSG_RESULT([*** X Composite extension not found, composite support for Audacious OSD will not be compiled ***])] + ) + else + AC_MSG_RESULT([*** X Composite support for Audacious OSD plugin disabled per user request ***]) + have_aosd_xcomp="no" + fi + else + AC_MSG_RESULT([*** Audacious OSD plugin disabled per user request ***]) + have_aosd="no" + fi fi if test "x$have_aosd" = "xyes"; then