svn commit: r466607 - head/games/allacrost

Ed Maste emaste at FreeBSD.org
Fri Apr 6 01:36:09 UTC 2018


Author: emaste (src committer)
Date: Fri Apr  6 01:36:08 2018
New Revision: 466607
URL: https://svnweb.freebsd.org/changeset/ports/466607

Log:
  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

Modified:
  head/games/allacrost/Makefile

Modified: head/games/allacrost/Makefile
==============================================================================
--- head/games/allacrost/Makefile	Thu Apr  5 22:16:47 2018	(r466606)
+++ head/games/allacrost/Makefile	Fri Apr  6 01:36:08 2018	(r466607)
@@ -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}
 


More information about the svn-ports-head mailing list