fixup build system for SDL2

doesn't build yet (at least with --enable-glx - this will be fixed later)
This commit is contained in:
rofl0r 2021-10-21 10:08:36 +00:00
parent 4cef851cbf
commit d5e9df3691
1 changed files with 2 additions and 2 deletions

View File

@ -59,8 +59,8 @@ AC_CHECK_LIB(zzip, zzip_open, [
dnl - Check for X11
AC_PATH_X
dnl - Check for SDL
AC_PATH_PROGS(SDLCONFIG, [sdl-config sdl11-config])
dnl - Check for SDL2
AC_PATH_PROGS(SDLCONFIG, [sdl2-config])
if test ! "x$SDLCONFIG" = "x" ; then
SDL_CFLAGS=`$SDLCONFIG --cflags`
SDL_LIBS=`$SDLCONFIG --libs`