svn commit: r505023 - head/sysutils/fusefs-mp3fs

Piotr Kubaj pkubaj at FreeBSD.org
Mon Jun 24 11:25:15 UTC 2019


Author: pkubaj
Date: Mon Jun 24 11:25:14 2019
New Revision: 505023
URL: https://svnweb.freebsd.org/changeset/ports/505023

Log:
  fusefs-mp3fs: fix build on GCC architectures
  
  Add USES=compiler:c11 to fix:
  /usr/local/lib/libFLAC++.so: undefined reference to `operator delete(void*, unsigned long)@CXXABI_1.3.9'
  
  Approved by:	mentors (implicit approval)

Modified:
  head/sysutils/fusefs-mp3fs/Makefile

Modified: head/sysutils/fusefs-mp3fs/Makefile
==============================================================================
--- head/sysutils/fusefs-mp3fs/Makefile	Mon Jun 24 10:58:22 2019	(r505022)
+++ head/sysutils/fusefs-mp3fs/Makefile	Mon Jun 24 11:25:14 2019	(r505023)
@@ -22,7 +22,7 @@ FETCH_CMD=	fetch -Fpr
 
 CFLAGS+=	-L${LOCALBASE}/lib -I${LOCALBASE}/include
 GNU_CONFIGURE=	yes
-USES=		fuse pkgconfig
+USES=		compiler:c11 fuse pkgconfig
 PLIST_FILES=	bin/mp3fs \
 		man/man1/mp3fs.1.gz
 


More information about the svn-ports-all mailing list