Date: Tue, 8 Sep 2020 19:47:10 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r548045 - head/multimedia/obs-studio Message-ID: <202009081947.088JlAHE029836@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Tue Sep 8 19:47:10 2020 New Revision: 548045 URL: https://svnweb.freebsd.org/changeset/ports/548045 Log: multimedia/obs-studio: Fix build when it was failing with the missing -fPIC reason Reported by: fallout Modified: head/multimedia/obs-studio/Makefile Modified: head/multimedia/obs-studio/Makefile ============================================================================== --- head/multimedia/obs-studio/Makefile Tue Sep 8 19:25:36 2020 (r548044) +++ head/multimedia/obs-studio/Makefile Tue Sep 8 19:47:10 2020 (r548045) @@ -2,6 +2,7 @@ PORTNAME= obs-studio DISTVERSION= 26.0.0-rc1 +PORTREVISION= 1 CATEGORIES= multimedia MAINTAINER= yuri@FreeBSD.org @@ -47,6 +48,8 @@ USE_LDCONFIG= yes CMAKE_ON= UNIX_STRUCTURE CMAKE_ARGS= -DOBS_VERSION_OVERRIDE:STRING="${PORTVERSION}" CFLAGS+= -D_WITH_GETLINE + +LDFLAGS+= -fPIC # pending https://github.com/obsproject/obs-studio/issues/3436 .include <bsd.port.options.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009081947.088JlAHE029836>