svn commit: r480049 - head/x11-wm/golem
Ed Maste
emaste at FreeBSD.org
Tue Sep 18 17:48:36 UTC 2018
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
More information about the svn-ports-all
mailing list