From 67e67ac5e539a2a7e33b8971917601ffed14e3e0 Mon Sep 17 00:00:00 2001 From: meep-eep Date: Wed, 25 Sep 2002 18:35:26 +0000 Subject: [PATCH] Little correction. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@81 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/configure.ac | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sc2/configure.ac b/sc2/configure.ac index fab9ab405..50d7f386f 100644 --- a/sc2/configure.ac +++ b/sc2/configure.ac @@ -70,13 +70,13 @@ SDL_VERSION=1.2.2 SMPEG_VERSION=0.4.0 AM_PATH_SDL($SDL_VERSION, , AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!])) AM_PATH_SMPEG($SMPEG_VERSION, , AC_MSG_ERROR([*** smpeg version $SMPEG_VERSION not found!])) -AC_CHECK_LIB(SDL_mixer, main, , AC_MSG_ERROR(Your system is missing libSDL_mixer!),`sdl-config --libs`) -AC_CHECK_LIB(SDL_image, main, , AC_MSG_ERROR(Your system is missing libSDL_image!),`sdl-config --libs`) -AC_CHECK_LIB(smpeg, main, , AC_MSG_ERROR(Your system is missing libsmpeg!),`smpeg-config --libs`) -AC_CHECK_HEADERS(SDL/SDL_image.h, , AC_MSG_ERROR(Your system is missing SDL_image.h!)) -AC_CHECK_HEADERS(SDL/SDL_mixer.h, , AC_MSG_ERROR(Your system is missing SDL_mixer.h!)) +AC_CHECK_LIB(SDL_mixer, main, , AC_MSG_ERROR([Your system is missing libSDL_mixer!]),`sdl-config --libs`) +AC_CHECK_LIB(SDL_image, main, , AC_MSG_ERROR([Your system is missing libSDL_image!]),`sdl-config --libs`) +AC_CHECK_LIB(smpeg, main, , AC_MSG_ERROR([Your system is missing libsmpeg!]),`smpeg-config --libs`) +AC_CHECK_HEADERS(SDL/SDL_image.h, , AC_MSG_ERROR([Your system is missing SDL_image.h!])) +AC_CHECK_HEADERS(SDL/SDL_mixer.h, , AC_MSG_ERROR([Your system is missing SDL_mixer.h!])) -# Select platform dependent OpenGL libs.. (tweak your patform here) +# Select platform dependent OpenGL libs.. (tweak your platform here) case "$target" in *-*-linux-gnu*) SYS_GL_LIBS="-lGL"