From 1e5f40b62b8547c296c4325bd143b7cfcbf0dd33 Mon Sep 17 00:00:00 2001 From: Aaron VonderHaar Date: Sun, 14 Sep 2003 06:33:28 +0000 Subject: [PATCH] Must check for libogg first because libvorbis depends on it --- stepmania/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/configure.ac b/stepmania/configure.ac index 7dcaf7b974..168e1411e6 100644 --- a/stepmania/configure.ac +++ b/stepmania/configure.ac @@ -46,8 +46,8 @@ echo $with_int_vorbis have_vorbis=no if test "$with_vorbis" = "yes" -a "$with_int_vorbis" = "no"; then oldlibs="$LIBS" - AC_SEARCH_LIBS(vorbis_comment_add, [vorbis], have_libvorbis=yes, have_libvorbis=no) AC_SEARCH_LIBS(ogg_stream_init, [ogg], have_libogg=yes, have_libogg=no) + AC_SEARCH_LIBS(vorbis_comment_add, [vorbis], have_libvorbis=yes, have_libvorbis=no) AC_SEARCH_LIBS(ov_open, [vorbisfile], have_libvorbisfile=yes, have_libvorbisfile=no) if test "$have_libvorbis" = "yes" -a "$have_libogg" = "yes" -a "$have_libvorbisfile" = "yes"; then have_vorbis=yes