Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Sep 2018 17:48:35 +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: r480049 - head/x11-wm/golem
Message-ID:  <201809181748.w8IHmZZL060512@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste (src committer)
Date: Tue Sep 18 17:48:35 2018
New Revision: 480049
URL: https://svnweb.freebsd.org/changeset/ports/480049

Log:
  x11-wm/golem: add -fPIC on i386, to allow linking with lld
  
  By default lld does not allow non-PIC code where PIC is required.
  Other architectures already apply -fPIC; do so for i386 as well.
  
  Approved by:	portmgr (lld blanket)
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/x11-wm/golem/Makefile

Modified: head/x11-wm/golem/Makefile
==============================================================================
--- head/x11-wm/golem/Makefile	Tue Sep 18 17:47:21 2018	(r480048)
+++ head/x11-wm/golem/Makefile	Tue Sep 18 17:48:35 2018	(r480049)
@@ -22,6 +22,7 @@ CONFIGURE_ARGS=	--enable-i18n
 MAKE_ARGS=	DEVEL=1
 
 CFLAGS_amd64=	-fPIC
+CFLAGS_i386=	-fPIC
 
 OPTIONS_DEFINE=	ESOUND XINERAMA
 OPTIONS_DEFAULT=	XINERAMA



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