Mercurial > audlegacy
changeset 2543:535bc24a9eb1 trunk
[svn] - make configure script show the configuration status of sampling rate conversion.
author | yaz |
---|---|
date | Sat, 17 Feb 2007 05:54:16 -0800 |
parents | ef01234ae265 |
children | f6c2e4388d28 |
files | ChangeLog configure.ac src/audacious/build_stamp.c |
diffstat | 3 files changed, 11 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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 <nenolod@sacredspiral.co.uk> + 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 <nenolod@sacredspiral.co.uk> revision [4092] - put configdb back in libaudacious as the client library needs it
--- 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)