0003-configure.ac-fix-static-linking-with-tremor.patch 999 B

123456789101112131415161718192021222324
  1. From 02e247a0b820753977315786087b969f3b2c53da Mon Sep 17 00:00:00 2001
  2. From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  3. Date: Sat, 10 Apr 2021 11:50:17 +0200
  4. Subject: [PATCH] configure.ac: fix linking with tremor
  5. backported from: https://github.com/libsdl-org/SDL_mixer/pull/312
  6. Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  7. ---
  8. configure.ac | 2 +-
  9. 1 file changed, 1 insertion(+), 1 deletion(-)
  10. diff --git a/configure.ac b/configure.ac
  11. index c8dbcdb..93d5db0 100644
  12. --- a/configure.ac
  13. +++ b/configure.ac
  14. @@ -453,7 +453,7 @@ if test x$enable_music_ogg = xyes; then
  15. echo "-- dynamic libvorbisidec -> $ogg_lib"
  16. EXTRA_CFLAGS="$EXTRA_CFLAGS -DOGG_DYNAMIC=\\\"$ogg_lib\\\""
  17. else
  18. - EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lvorbisidec -lvorbis"
  19. + EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lvorbisidec"
  20. fi
  21. else
  22. AC_MSG_WARN([*** Unable to find Ogg Vorbis Tremor library (http://www.xiph.org/)])