svn commit: r541479 - head/audio/gnaural

Ganael LAPLANCHE martymac at FreeBSD.org
Wed Jul 8 10:17:11 UTC 2020


Author: martymac
Date: Wed Jul  8 10:17:10 2020
New Revision: 541479
URL: https://svnweb.freebsd.org/changeset/ports/541479

Log:
  Fix linking error
  
  ld: error: undefined symbol: pow

Modified:
  head/audio/gnaural/Makefile

Modified: head/audio/gnaural/Makefile
==============================================================================
--- head/audio/gnaural/Makefile	Wed Jul  8 09:58:45 2020	(r541478)
+++ head/audio/gnaural/Makefile	Wed Jul  8 10:17:10 2020	(r541479)
@@ -22,4 +22,6 @@ USES=		desktop-file-utils gnome pkgconfig
 USE_CSTD=	gnu89
 USE_GNOME=	libglade2
 
+LDFLAGS+=	-lm
+
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list