add audio/video dummies if nothing else available II.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
diff --git a/configure b/configure
index 75f8fde..6603cd9 100755
--- a/configure
+++ b/configure
@@ -26893,6 +26893,22 @@ INSTALL_SDL2_CONFIG=$enable_sdl2_config
# Verify that we have all the platform specific files we need
+if test x$have_audio != xyes; then
+ if test x$enable_audio = xyes; then
+
+$as_echo "#define SDL_AUDIO_DRIVER_DUMMY 1" >>confdefs.h
+
+ fi
+ SOURCES="$SOURCES $srcdir/src/audio/dummy/*.c"
+fi
+if test x$have_video != xyes; then
+ if test x$enable_video = xyes; then
+
+$as_echo "#define SDL_VIDEO_DRIVER_DUMMY 1" >>confdefs.h
+
+ fi
+ SOURCES="$SOURCES $srcdir/src/video/dummy/*.c"
+fi
if test x$have_misc != xyes; then
if test x$enable_misc = xyes; then
diff --git a/configure.ac b/configure.ac
index c70a1ed..0391c67 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4567,6 +4567,18 @@ AC_SUBST([INSTALL_SDL2_CONFIG], [$enable_sdl2_config])
# Verify that we have all the platform specific files we need
+if test x$have_audio != xyes; then
+ if test x$enable_audio = xyes; then
+ AC_DEFINE(SDL_AUDIO_DRIVER_DUMMY, 1, [ ])
+ fi
+ SOURCES="$SOURCES $srcdir/src/audio/dummy/*.c"
+fi
+if test x$have_video != xyes; then
+ if test x$enable_video = xyes; then
+ AC_DEFINE(SDL_VIDEO_DRIVER_DUMMY, 1, [ ])
+ fi
+ SOURCES="$SOURCES $srcdir/src/video/dummy/*.c"
+fi
if test x$have_misc != xyes; then
if test x$enable_misc = xyes; then
AC_DEFINE(SDL_MISC_DUMMY, 1, [ ])