Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 5 Apr 2018 14:04:54 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r466560 - head/devel/love08
Message-ID:  <201804051404.w35E4sF2029434@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste (src committer)
Date: Thu Apr  5 14:04:54 2018
New Revision: 466560
URL: https://svnweb.freebsd.org/changeset/ports/466560

Log:
  devel/love08: 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 devel/love08 detected at configure time as:
  configure: error: Can't LÖVE without OpenAL
  
  PR:		226980
  Approved by:	portmgr (LLD_UNSAFE blanket)
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/devel/love08/Makefile

Modified: head/devel/love08/Makefile
==============================================================================
--- head/devel/love08/Makefile	Thu Apr  5 14:00:35 2018	(r466559)
+++ head/devel/love08/Makefile	Thu Apr  5 14:04:54 2018	(r466560)
@@ -30,6 +30,7 @@ GNU_CONFIGURE=	yes
 CPPFLAGS+=	-I${LOCALBASE}/include -I${LOCALBASE}/include/freetype2 \
 		-I${LUA_INCDIR} `${SDL_CONFIG} --cflags`
 LDFLAGS+=	-L${LOCALBASE}/lib -L${LUA_LIBDIR}
+LLD_UNSAFE=	yes
 CONFIGURE_ARGS=	--bindir=${PREFIX}/bin --libdir=${PREFIX}/lib \
 		--program-suffix=08
 WRKSRC=		${WRKDIR}/love-${PORTVERSION}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804051404.w35E4sF2029434>