svn commit: r542354 - head/devel/libmsocket

Piotr Kubaj pkubaj at FreeBSD.org
Thu Jul 16 12:59:59 UTC 2020


Author: pkubaj
Date: Thu Jul 16 12:59:58 2020
New Revision: 542354
URL: https://svnweb.freebsd.org/changeset/ports/542354

Log:
  devel/libmsocket: fix build on powerpc(64) head
  
  Needs the same CFLAGS as other architectures.

Modified:
  head/devel/libmsocket/Makefile

Modified: head/devel/libmsocket/Makefile
==============================================================================
--- head/devel/libmsocket/Makefile	Thu Jul 16 12:13:30 2020	(r542353)
+++ head/devel/libmsocket/Makefile	Thu Jul 16 12:59:58 2020	(r542354)
@@ -31,6 +31,8 @@ PLIST_FILES=	lib/libmsocket.so \
 CFLAGS_aarch64+=-fPIC -DPIC
 CFLAGS_amd64+=	-fPIC -DPIC
 CFLAGS_i386+=	-fPIC -DPIC
+CFLAGS_powerpc64+=	-fPIC -DPIC
+CFLAGS_powerpc+=	-fPIC -DPIC
 
 DEBUG_CONFIGURE_ON=	--enable-debug
 


More information about the svn-ports-all mailing list