Date: Mon, 23 Sep 2019 20:25:38 +0000 (UTC) From: Tilman Keskinoz <arved@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512672 - head/audio/swhplugins Message-ID: <201909232025.x8NKPcTB066127@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: arved Date: Mon Sep 23 20:25:38 2019 New Revision: 512672 URL: https://svnweb.freebsd.org/changeset/ports/512672 Log: Three plugins used C89 inline semantics, which resulted in unresolved symbols with C99 compilers. PR: 239128 Reported by: Marcel Bonnet While here, portlint. Grab back maintainership. Modified: head/audio/swhplugins/Makefile Modified: head/audio/swhplugins/Makefile ============================================================================== --- head/audio/swhplugins/Makefile Mon Sep 23 20:24:12 2019 (r512671) +++ head/audio/swhplugins/Makefile Mon Sep 23 20:25:38 2019 (r512672) @@ -3,28 +3,31 @@ PORTNAME= swhplugins PORTVERSION= 0.4.15 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= audio MASTER_SITES= http://plugin.org.uk/releases/${PORTVERSION}/ DISTNAME= swh-plugins-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= arved@FreeBSD.org COMMENT= Steve Harris' huge Collection of LADSPA Plugins +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + BUILD_DEPENDS= ${LOCALBASE}/include/ladspa.h:audio/ladspa \ ${LOCALBASE}/include/fftw3.h:math/fftw3 LIB_DEPENDS= libfftw3f.so:math/fftw3-float # includes assembler code -ONLY_FOR_ARCHS= i386 amd64 - +ONLY_FOR_ARCHS= amd64 i386 USES= gmake libtool pkgconfig + GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib USE_LDCONFIG= yes -CFLAGS+= -fPIC -DPIC +CFLAGS+= -fPIC -DPIC -fgnu89-inline OPTIONS_DEFINE= NLS 3DNOW SSE OPTIONS_SUB= yes
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909232025.x8NKPcTB066127>