diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-07-16 12:59:58 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-07-16 12:59:58 +0000 |
commit | 5865b7047cc5a508a582b7112d752e489926160c (patch) | |
tree | 57e528ee2a6dae7099f699c1d12aa04208768e66 | |
parent | openexr/ilmbase update w/ shlib rename => PORTREVISION bumps of dependent ports (diff) |
devel/libmsocket: fix build on powerpc(64) head
Needs the same CFLAGS as other architectures.
-rw-r--r-- | devel/libmsocket/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/devel/libmsocket/Makefile b/devel/libmsocket/Makefile index 1fe6cd2829f4..fd1b3746d3ed 100644 --- a/devel/libmsocket/Makefile +++ b/devel/libmsocket/Makefile @@ -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 |