svn commit: r555597 - head/audio/lsp-plugins-lv2

Mark Linimon linimon at FreeBSD.org
Tue Nov 17 22:23:25 UTC 2020


Author: linimon
Date: Tue Nov 17 22:23:24 2020
New Revision: 555597
URL: https://svnweb.freebsd.org/changeset/ports/555597

Log:
  Avoid building with GCC 10 due to:
  
    types.h:95:37: error: 'asm' operand has impossible constraints
  
  PR:		246700
  Approved by:	maintainer

Modified:
  head/audio/lsp-plugins-lv2/Makefile

Modified: head/audio/lsp-plugins-lv2/Makefile
==============================================================================
--- head/audio/lsp-plugins-lv2/Makefile	Tue Nov 17 22:21:03 2020	(r555596)
+++ head/audio/lsp-plugins-lv2/Makefile	Tue Nov 17 22:23:24 2020	(r555597)
@@ -22,7 +22,9 @@ LIB_DEPENDS=	libsndfile.so:audio/libsndfile
 USES=		compiler:c11 gmake gl gnome iconv:wchar_t pkgconfig xorg
 USE_GITHUB=	yes
 GH_ACCOUNT=	sadko4u
-USE_GCC=	any # clang breaks: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=232911
+# changed from yes to 9 due to:
+# types.h:95:37: error: 'asm' operand has impossible constraints
+USE_GCC=	9 # clang breaks: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=232911
 USE_GNOME=	cairo
 USE_XORG=	x11
 USE_GL=		gl


More information about the svn-ports-all mailing list