changeset 35153:95ccce972b4b

Change the order of tested libvorbis ldflags. This fixes libvorbis linking on some systems. Tested by Krzysztof Duchnowski.
author cehoyos
date Sun, 14 Oct 2012 11:01:35 +0000
parents 94190990c2cd
children 0dce150a6f51
files configure
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Sat Oct 13 17:04:42 2012 +0000
+++ b/configure	Sun Oct 14 11:01:35 2012 +0000
@@ -6305,7 +6305,7 @@
 fi
 if test "$_libvorbis" = auto; then
   _libvorbis=no
-  for vorbislibs in '-lvorbis -logg' '-lvorbis -lvorbisenc -logg' ; do
+  for vorbislibs in '-lvorbis -lvorbisenc -logg' '-lvorbis -logg' ; do
     statement_check vorbis/vorbisenc.h 'vorbis_encode_ctl(0, 0, 0); ogg_stream_clear(0)' $vorbislibs && _libvorbis=yes && break
   done
 fi