aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2005-12-31 04:11:03 +0000
committerEric Wong <normalperson@yhbt.net>2005-12-31 04:11:03 +0000
commitea5d367ecf00f9ac4a5e8f0d8cc8909538f42640 (patch)
tree306ea7e269c2f6d520dddd2b1d8c5c4366b8ef21 /configure.ac
parent18e5825cae10e3500ff75fdbbb7a768b8387a1c2 (diff)
downloadmpd-ea5d367ecf00f9ac4a5e8f0d8cc8909538f42640.tar.gz
mpd-ea5d367ecf00f9ac4a5e8f0d8cc8909538f42640.tar.xz
mpd-ea5d367ecf00f9ac4a5e8f0d8cc8909538f42640.zip
r1071@BL4ST: normalperson | 2005-12-30 20:05:16 -0800
merge with trunk: * potential fix for bug #466 (shank, ALSA) * Configure fix, so when no glib found it gives a error, and another race condition fix in the master proces patch. (qball) * call dropBufferedAudio() when pausing (shank) * flac_plugin: revert the performance optimization we did a while ago the performance optimization was broken for big-endian architectures. mpd-uclinux is doing using a slightly different optimization to flacWrite() that we may end up using here in the future. (me/qball) ---------------------------------------------------------------------- git-svn-id: https://svn.musicpd.org/mpd/branches/oggflac@3754 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index e9af7e634..3ed85057e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -85,7 +85,7 @@ AC_CHECK_LIB(nsl,gethostbyname,MPD_LIBS="$MPD_LIBS -lnsl",)
AC_CHECK_LIB(m,exp,MPD_LIBS="$MPD_LIBS -lm",)
-PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.0, [MPD_LIBS="$MPD_LIBS $GLIB_LIBS" MPD_CFLAGS="$MPD_CFLAGS $GLIB_CFLAGS"],[echo "Unable to find glib-2.0 of version 2.0 or above"])
+PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.0, [MPD_LIBS="$MPD_LIBS $GLIB_LIBS" MPD_CFLAGS="$MPD_CFLAGS $GLIB_CFLAGS"],[echo "";echo "** ERROR:Unable to find glib-2.0 of version 2.0 or above **" ; exit 1])