From 5a2246b224a9b116eca312fe709ac10c273773f8 Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Wed, 19 Jan 2005 20:26:01 +0000 Subject: [PATCH] take care when only compiling in SDL audio support with X11 graphics --- SheepShaver/src/Unix/configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SheepShaver/src/Unix/configure.ac b/SheepShaver/src/Unix/configure.ac index 588a9c31..fe8bd0f4 100644 --- a/SheepShaver/src/Unix/configure.ac +++ b/SheepShaver/src/Unix/configure.ac @@ -146,6 +146,8 @@ if [[ "x$WANT_SDL" = "xyes" ]]; then LIBS="$LIBS $sdl_libs" else WANT_SDL=no + WANT_SDL_VIDEO=no + WANT_SDL_AUDIO=no fi SDL_SUPPORT=`echo "$SDL_SUPPORT" | sed -e "s/^ //"` else @@ -153,7 +155,7 @@ else fi dnl We need X11, if not using SDL. -if [[ "x$WANT_SDL" = "xno" ]]; then +if [[ "x$WANT_SDL_VIDEO" != "xyes" ]]; then AC_PATH_XTRA if [[ "x$no_x" = "xyes" ]]; then AC_MSG_ERROR([You need X11 to run SheepShaver.])