Mercurial > audlegacy
changeset 1701:021f87117ac9 trunk
[svn] - do not AC_MSG_ERROR() when libvorbis is not present, just notify the user that vorbis support won't be built
author | nenolod |
---|---|
date | Fri, 15 Sep 2006 16:34:23 -0700 |
parents | 4a6f56f1a0a2 |
children | 002a5743e4b6 |
files | ChangeLog configure.ac |
diffstat | 2 files changed, 10 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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 <nenolod@nenolod.net> + revision [2337] + - build CoreAudio plugin if available + + + Changes: Modified: + +20 -1 trunk/configure.ac + + 2006-09-15 21:31:03 +0000 William Pitcock <nenolod@nenolod.net> revision [2335] - remove sqlite from main makefile
--- 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