comparison configure.ac @ 2141:c266c29a36c5

require libvorbis 1.2 due to undefined behaviour in 1.1.x.
author William Pitcock <nenolod@atheme.org>
date Sun, 28 Oct 2007 14:02:12 -0500
parents ce4beb166e92
children 19725f003ddf
comparison
equal deleted inserted replaced
2140:1ebc33b0a608 2141:c266c29a36c5
621 [enable_vorbis=$enableval], 621 [enable_vorbis=$enableval],
622 [enable_vorbis="yes"] 622 [enable_vorbis="yes"]
623 ) 623 )
624 624
625 if test "$enable_vorbis" = "yes"; then 625 if test "$enable_vorbis" = "yes"; then
626 PKG_CHECK_MODULES(OGG_VORBIS, [ogg >= 1.0 vorbis >= 1.0 vorbisfile >= 1.0], 626 PKG_CHECK_MODULES(OGG_VORBIS, [ogg >= 1.0 vorbis >= 1.2 vorbisfile >= 1.2],
627 [have_oggvorbis=yes], 627 [have_oggvorbis=yes],
628 [AC_MSG_WARN([*** Cannot find libogg/libvorbis, Ogg Vorbis support will not be built ***]) 628 [AC_MSG_WARN([*** Cannot find libogg/libvorbis, Ogg Vorbis support will not be built ***])
629 have_oggvorbis=no] 629 have_oggvorbis=no]
630 ) 630 )
631 else 631 else