From 6f4692b27b443bdb0e37a53f54250a9f6c274f3e Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 13 Oct 2009 06:54:57 +0000 Subject: [PATCH] Removed spurious tabs --- configure.in | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/configure.in b/configure.in index d7bfcb04..457c4e6a 100644 --- a/configure.in +++ b/configure.in @@ -399,19 +399,19 @@ AC_HELP_STRING([--enable-music-flac-shared], [dynamically load FLAC support [[default=yes]]]), [], [enable_music_flac_shared=yes]) if test x$enable_music_flac = xyes; then - AC_CHECK_HEADER([FLAC/export.h], [have_flac_export=yes]) - if test x$have_flac_export = xyes; then - LIBS_SAVED="$LIBS" - LIBS="-lFLAC" - AC_MSG_CHECKING([for libflac so-name version >= $libflac_ver]) - AC_TRY_RUN([ + AC_CHECK_HEADER([FLAC/export.h], [have_flac_export=yes]) + if test x$have_flac_export = xyes; then + LIBS_SAVED="$LIBS" + LIBS="-lFLAC" + AC_MSG_CHECKING([for libflac so-name version >= $libflac_ver]) + AC_TRY_RUN([ #include "FLAC/export.h" #include "stdio.h" int main( int argc, char *argv[] ) { #if defined(FLAC_API_VERSION_CURRENT) && (FLAC_API_VERSION_CURRENT >= $libflac_ver) - return 0; + return 0; #else - return 1; + return 1; #endif } ], have_flac_ver=yes, have_flac_ver=no)