diff options
author | Stijn Buys <ingar@osirion.org> | 2015-01-06 19:28:30 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2015-01-06 19:28:30 +0000 |
commit | 7880a114b4619d7258183b87a4e6427f9402393f (patch) | |
tree | d669efe3fe81d5a67fc8d4413fe00146d45940d0 | |
parent | da18502a892f7ab025972c51fe268ef7e5e9a18b (diff) |
Use sdl2-config in configure.
-rw-r--r-- | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 7714073..8ded43b 100644 --- a/configure.ac +++ b/configure.ac @@ -450,9 +450,9 @@ else dnl SDL dnl - AC_MSG_CHECKING([looking for SDL]) - KDE_FIND_PATH(sdl-config, LIBSDL_CONFIG, [${prefix}/bin ${exec_prefix}/bin /usr/local/bin /opt/local/bin], [ - AC_MSG_ERROR([SDL not found]) + AC_MSG_CHECKING([looking for SDL2]) + KDE_FIND_PATH(sdl2-config, LIBSDL_CONFIG, [${prefix}/bin ${exec_prefix}/bin /usr/local/bin /opt/local/bin], [ + AC_MSG_ERROR([SDL2 not found]) ]) if test -n "$LIBSDL_CONFIG"; then @@ -561,7 +561,7 @@ curses ............. $HAVE_CURSES build client ....... $BUILD_CLIENT]) if test "x$BUILD_CLIENT" = xyes; then -AC_MSG_RESULT([SDL ................ $LIBSDL_LIBS +AC_MSG_RESULT([SDL2 ............... $LIBSDL_LIBS opengl ............. $GL_LIBS openal ............. $AL_LIBS] vorbisfile ......... $LIBVORBISFILE_LIBS) |