audacious-plugins-3.2.2-fix-build-sdl.patch 622 B

1234567891011121314151617181920
  1. commit b6df18997dabe37f4357d977d2dfae07899be5e7
  2. Author: Michał Lipski <tallica@o2.pl>
  3. Date: Mon May 7 12:48:23 2012 +0200
  4. Use pkg-config for libsdl detection. (Gentoo #414999)
  5. diff --git a/configure.ac b/configure.ac
  6. index 358f841..cbba0ce 100644
  7. --- a/configure.ac
  8. +++ b/configure.ac
  9. @@ -693,7 +693,7 @@ AC_ARG_ENABLE(sdlout,
  10. [enable_sdlout=$enableval], [enable_sdlout=yes])
  11. if test $enable_sdlout = yes ; then
  12. - AM_PATH_SDL(1.2.5, [enable_sdlout=yes], [enable_sdlout=no])
  13. + PKG_CHECK_MODULES([SDL], [sdl >= 1.2.11], [enable_sdlout=yes], [enable_sdlout=no])
  14. fi
  15. if test $enable_sdlout = yes ; then