# HG changeset patch # User yaz # Date 1171720456 28800 # Node ID 535bc24a9eb10c4e9aa94e519e2fd117c1af70a9 # Parent ef01234ae265e0b0369e20e482b25a2e10d88ca3 [svn] - make configure script show the configuration status of sampling rate conversion. diff -r ef01234ae265 -r 535bc24a9eb1 ChangeLog --- a/ChangeLog Sat Feb 17 02:36:11 2007 -0800 +++ b/ChangeLog Sat Feb 17 05:54:16 2007 -0800 @@ -1,3 +1,11 @@ +2007-02-17 10:36:11 +0000 William Pitcock + revision [4094] + - ppc64 warning fixes for upsampling patch + + trunk/src/audacious/output.c | 17 ++++++++++------- + 1 file changed, 10 insertions(+), 7 deletions(-) + + 2007-02-17 10:32:37 +0000 William Pitcock revision [4092] - put configdb back in libaudacious as the client library needs it diff -r ef01234ae265 -r 535bc24a9eb1 configure.ac --- a/configure.ac Sat Feb 17 02:36:11 2007 -0800 +++ b/configure.ac Sat Feb 17 05:54:16 2007 -0800 @@ -208,8 +208,8 @@ dnl ======================== AC_ARG_ENABLE(samplerate, [ --enable-samplerate enable libsamplerate support (default=no)], - [cv_samplerate="$enable_samplerate"], [cv_samplerate="no"]) -if test "x$cv_samplerate" = "xyes"; then + [enable_samplerate=$enableval], [enable_samplerate=no]) +if test "x$enable_samplerate" = "xyes"; then AC_DEFINE(USE_SRC, 1, [Define if libsamplerate enabled] ) PKG_CHECK_MODULES(samplerate, samplerate) AC_SUBST(USE_SRC) diff -r ef01234ae265 -r 535bc24a9eb1 src/audacious/build_stamp.c --- a/src/audacious/build_stamp.c Sat Feb 17 02:36:11 2007 -0800 +++ b/src/audacious/build_stamp.c Sat Feb 17 05:54:16 2007 -0800 @@ -1,2 +1,2 @@ #include -const gchar *svn_stamp = "20070217-4092"; +const gchar *svn_stamp = "20070217-4094";