svn commit: r542122 - branches/2020Q3/audio/gnaural

Ganael LAPLANCHE martymac at FreeBSD.org
Mon Jul 13 10:22:11 UTC 2020


Author: martymac
Date: Mon Jul 13 10:22:10 2020
New Revision: 542122
URL: https://svnweb.freebsd.org/changeset/ports/542122

Log:
  MFH: r541479
  
  Fix linking error
  
  ld: error: undefined symbol: pow
  
  Approved by:	portmgr (blanket)

Modified:
  branches/2020Q3/audio/gnaural/Makefile
Directory Properties:
  branches/2020Q3/   (props changed)

Modified: branches/2020Q3/audio/gnaural/Makefile
==============================================================================
--- branches/2020Q3/audio/gnaural/Makefile	Mon Jul 13 10:00:20 2020	(r542121)
+++ branches/2020Q3/audio/gnaural/Makefile	Mon Jul 13 10:22:10 2020	(r542122)
@@ -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