Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 Apr 2019 06:13:39 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r499236 - head/audio/sdl_sound/files
Message-ID:  <201904180613.x3I6DdQW004344@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904180613.x3I6DdQW004344>