svn commit: r499236 - head/audio/sdl_sound/files

Tobias Kortkamp tobik at FreeBSD.org
Thu Apr 18 06:13:40 UTC 2019


Author: tobik
Date: Thu Apr 18 06:13:39 2019
New Revision: 499236
URL: https://svnweb.freebsd.org/changeset/ports/499236

Log:
  audio/sdl_sound: Fix build on FreeBSD 13.0
  
  ld: error: ../.libs/libSDL_sound.so: undefined reference to log
  ld: error: ../.libs/libSDL_sound.so: undefined reference to exp2
  ld: error: ../.libs/libSDL_sound.so: undefined reference to sin
  
  http://beefy11.nyi.freebsd.org/data/head-i386-default/p499228_s346255/logs/errors/sdl_sound-1.0.3_14.log

Added:
  head/audio/sdl_sound/files/
  head/audio/sdl_sound/files/patch-Makefile.in   (contents, props changed)

Added: head/audio/sdl_sound/files/patch-Makefile.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/sdl_sound/files/patch-Makefile.in	Thu Apr 18 06:13:39 2019	(r499236)
@@ -0,0 +1,15 @@
+ld: error: ../.libs/libSDL_sound.so: undefined reference to log
+ld: error: ../.libs/libSDL_sound.so: undefined reference to exp2
+ld: error: ../.libs/libSDL_sound.so: undefined reference to sin
+
+--- Makefile.in.orig	2019-04-18 06:08:16 UTC
++++ Makefile.in
+@@ -256,7 +256,7 @@ libSDL_sound_la_LDFLAGS = \
+ 
+ libSDL_sound_la_LIBADD = \
+ 	decoders/libdecoders.la	\
+-	$(TIMIDITY_LIB) $(MPGLIB_LIB)
++	$(TIMIDITY_LIB) $(MPGLIB_LIB) -lm
+ 
+ EXTRA_DIST = \
+ 	CREDITS \


More information about the svn-ports-all mailing list