Skip to content

Commit

Permalink
configure: Cleaned up audio/video summaries when building for Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Apr 22, 2019
1 parent 90b0888 commit 2f6c988
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions configure
Expand Up @@ -23536,9 +23536,6 @@ $as_echo "#define HAVE_XINPUT_STATE_EX 1" >>confdefs.h

fi

SUMMARY_video="${SUMMARY_video} directx"
SUMMARY_audio="${SUMMARY_audio} directx"

# FIXME: latest Cygwin finds dinput headers, but we die on other win32 headers.
# FIXME: ...so force it off for now.
case "$host" in
Expand Down Expand Up @@ -24616,23 +24613,27 @@ fi

$as_echo "#define SDL_VIDEO_RENDER_D3D 1" >>confdefs.h

SUMMARY_video="${SUMMARY_video} d3d9"
fi
if test x$enable_render_d3d = xyes -a x$have_d3d11 = xyes; then

$as_echo "#define SDL_VIDEO_RENDER_D3D11 1" >>confdefs.h

SUMMARY_video="${SUMMARY_video} d3d11"
fi
fi
# Set up files for the audio library
if test x$enable_audio = xyes; then

$as_echo "#define SDL_AUDIO_DRIVER_WINMM 1" >>confdefs.h

SUMMARY_audio="${SUMMARY_audio} winmm"
SOURCES="$SOURCES $srcdir/src/audio/winmm/*.c"
if test x$have_dsound = xyes; then

$as_echo "#define SDL_AUDIO_DRIVER_DSOUND 1" >>confdefs.h

SUMMARY_audio="${SUMMARY_audio} directsound"
SOURCES="$SOURCES $srcdir/src/audio/directsound/*.c"
fi
if test x$have_wasapi = xyes -a x$enable_wasapi = xyes; then
Expand Down
7 changes: 4 additions & 3 deletions configure.ac
Expand Up @@ -2973,9 +2973,6 @@ XINPUT_STATE_EX s1;
AC_DEFINE(HAVE_XINPUT_STATE_EX, 1, [ ])
fi

SUMMARY_video="${SUMMARY_video} directx"
SUMMARY_audio="${SUMMARY_audio} directx"

# FIXME: latest Cygwin finds dinput headers, but we die on other win32 headers.
# FIXME: ...so force it off for now.
case "$host" in
Expand Down Expand Up @@ -3514,17 +3511,21 @@ AS_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau
, enable_render_d3d=yes)
if test x$enable_render_d3d = xyes -a x$have_d3d = xyes; then
AC_DEFINE(SDL_VIDEO_RENDER_D3D, 1, [ ])
SUMMARY_video="${SUMMARY_video} d3d9"
fi
if test x$enable_render_d3d = xyes -a x$have_d3d11 = xyes; then
AC_DEFINE(SDL_VIDEO_RENDER_D3D11, 1, [ ])
SUMMARY_video="${SUMMARY_video} d3d11"
fi
fi
# Set up files for the audio library
if test x$enable_audio = xyes; then
AC_DEFINE(SDL_AUDIO_DRIVER_WINMM, 1, [ ])
SUMMARY_audio="${SUMMARY_audio} winmm"
SOURCES="$SOURCES $srcdir/src/audio/winmm/*.c"
if test x$have_dsound = xyes; then
AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND, 1, [ ])
SUMMARY_audio="${SUMMARY_audio} directsound"
SOURCES="$SOURCES $srcdir/src/audio/directsound/*.c"
fi
if test x$have_wasapi = xyes -a x$enable_wasapi = xyes; then
Expand Down

0 comments on commit 2f6c988

Please sign in to comment.