Hopefully fix configure test on windows
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3247
This commit is contained in:
parent
32d6ebc48a
commit
4e63ba6dd8
1 changed files with 6 additions and 2 deletions
|
@ -38,11 +38,15 @@ CPPFLAGS="$CPPFLAGS $SDL_CFLAGS"
|
|||
|
||||
dnl Check if SDL is 1.2.x (1.3 not supported)
|
||||
AC_MSG_CHECKING([SDL version only being 1.2.X])
|
||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "SDL.h"]],[[
|
||||
AC_COMPILE_IFELSE([
|
||||
#include "SDL.h"
|
||||
void blah(){
|
||||
#if SDL_MINOR_VERSION != 2
|
||||
#error "Only SDL 1.2 supported"
|
||||
#endif
|
||||
]])],AC_MSG_RESULT([yes]),[
|
||||
;
|
||||
}
|
||||
],AC_MSG_RESULT([yes]),[
|
||||
AC_MSG_RESULT([no])
|
||||
AC_MSG_ERROR([Only libSDL 1.2.X supported])])
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue