# HG changeset patch # User nenolod # Date 1158363263 25200 # Node ID 021f87117ac927c0f2913e3cd03c5980dfaf56df # Parent 4a6f56f1a0a2ce2952d816b16e7f84daf29b708a [svn] - do not AC_MSG_ERROR() when libvorbis is not present, just notify the user that vorbis support won't be built diff -r 4a6f56f1a0a2 -r 021f87117ac9 ChangeLog --- a/ChangeLog Fri Sep 15 16:32:15 2006 -0700 +++ b/ChangeLog Fri Sep 15 16:34:23 2006 -0700 @@ -1,3 +1,12 @@ +2006-09-15 23:32:15 +0000 William Pitcock + revision [2337] + - build CoreAudio plugin if available + + + Changes: Modified: + +20 -1 trunk/configure.ac + + 2006-09-15 21:31:03 +0000 William Pitcock revision [2335] - remove sqlite from main makefile diff -r 4a6f56f1a0a2 -r 021f87117ac9 configure.ac --- a/configure.ac Fri Sep 15 16:32:15 2006 -0700 +++ b/configure.ac Fri Sep 15 16:34:23 2006 -0700 @@ -456,7 +456,7 @@ if test "$enable_vorbis" = "yes"; then PKG_CHECK_MODULES(OGG_VORBIS, [ogg >= 1.0 vorbis >= 1.0 vorbisfile >= 1.0], [have_oggvorbis=yes], - [AC_MSG_ERROR([Cannot find libogg/libvorbis]) + [AC_MSG_WARN([*** Cannot find libogg/libvorbis, Ogg Vorbis support will not be built ***]) have_oggvorbis=no] ) else