From 1afc2a04e4f662f691fafccba49943fe0ee4ecec Mon Sep 17 00:00:00 2001 From: dscho Date: Tue, 8 Jun 2004 19:46:12 +0000 Subject: [PATCH] fix test for sdl --- configure.ac | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index ebd8e69..48c8423 100644 --- a/configure.ac +++ b/configure.ac @@ -29,10 +29,6 @@ AC_ARG_WITH(24bpp, if test "x$with_24bpp" = "xyes"; then AC_DEFINE(ALLOW24BPP) fi -AH_TEMPLATE(SDL_CONFIG, [Use sdl-config (for SDLvncviewer)]) -AC_ARG_WITH(sdl, - [ --with-sdl use sdl-config], - , [ with_sdl=yes ]) AH_TEMPLATE(FFMPEG, [Use ffmpeg (for vnc2mpg)]) AC_ARG_WITH(ffmpeg, [ --with-ffmpeg=dir set ffmpeg home directory],,) @@ -95,7 +91,7 @@ AM_CONDITIONAL(HAVE_LIBPTHREAD, test ! -z "$HAVE_LIBPTHREAD") AM_CONDITIONAL(HAVE_LIBZ, test ! -z "$HAVE_ZLIB_H") AM_CONDITIONAL(HAVE_LIBJPEG, test ! -z "$HAVE_JPEGLIB_H") if test -z "$with_sdl"; then - if sdl-config >/dev/null 2>&1; then + if sdl-config --version >/dev/null 2>&1; then with_sdl=yes else with_sdl=no