svn commit: r480068 - head/devel/libmsocket

Ed Maste emaste at FreeBSD.org
Tue Sep 18 18:57:20 UTC 2018


Author: emaste (src committer)
Date: Tue Sep 18 18:57:19 2018
New Revision: 480068
URL: https://svnweb.freebsd.org/changeset/ports/480068

Log:
  devel/libmsocket: enable PIC on i386, for lld
  
  Shared objects should be built as PIC, and lld enforces this by default.
  Add an i386 case to the existing set of per-arch CFLAGS, and remove the
  CFLAGS_iad64 typo case.
  
  Approved by:	portmgr (lld blanket)
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/devel/libmsocket/Makefile

Modified: head/devel/libmsocket/Makefile
==============================================================================
--- head/devel/libmsocket/Makefile	Tue Sep 18 18:54:55 2018	(r480067)
+++ head/devel/libmsocket/Makefile	Tue Sep 18 18:57:19 2018	(r480068)
@@ -31,7 +31,7 @@ PLIST_FILES=	lib/libmsocket.so \
 
 CFLAGS_aarch64+=-fPIC -DPIC
 CFLAGS_amd64+=	-fPIC -DPIC
-CFLAGS_iad64+=	-fPIC -DPIC
+CFLAGS_i386+=	-fPIC -DPIC
 
 DEBUG_CONFIGURE_ON=	--enable-debug
 


More information about the svn-ports-head mailing list