From 4368893dbe955fa5ac9cd229742df362019b217e Mon Sep 17 00:00:00 2001 From: emaste Date: Fri, 6 Apr 2018 01:36:08 +0000 Subject: games/allacrost: fix build when lld is the system linker Ports that use openal (such as this one) fail to link with lld as the system linker due to disagreement in the handling of preemption of protected visibility symbols in shared objects. In the case of games/allacrost, failed at configure time: checking for alGetError in -lopenal... no You need to install the OpenAL library. ===> Script "configure" failed unexpectedly. PR: 226980 Approved by: portmgr (LLD_UNSAFE blanket) Sponsored by: The FreeBSD Foundation --- games/allacrost/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'games') diff --git a/games/allacrost/Makefile b/games/allacrost/Makefile index 88ce0bd49521..0c53bfbc6c13 100644 --- a/games/allacrost/Makefile +++ b/games/allacrost/Makefile @@ -28,6 +28,7 @@ QT_NONSTANDARD= yes # used when EDITOR enabled CONFIGURE_ARGS= --datadir=${DATADIR} CPPFLAGS+= -I${LOCALBASE}/include -I${LUA_INCDIR} LDFLAGS+= -L${LOCALBASE}/lib -L${LUA_LIBDIR} +LLD_UNSAFE= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -- cgit