Date: Thu, 17 Jun 2021 10:28:42 GMT From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 59bd1369d9e0 - main - devel/libmsocket: fix build on riscv64 Message-ID: <202106171028.15HASgkQ050498@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=59bd1369d9e0a0821c1300a218a96a6933175a94 commit 59bd1369d9e0a0821c1300a218a96a6933175a94 Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2021-06-17 10:28:04 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2021-06-17 10:28:04 +0000 devel/libmsocket: fix build on riscv64 Same issue as on other architectures. --- devel/libmsocket/Makefile | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/devel/libmsocket/Makefile b/devel/libmsocket/Makefile index 2984f390944c..b3d650544610 100644 --- a/devel/libmsocket/Makefile +++ b/devel/libmsocket/Makefile @@ -27,13 +27,14 @@ PLIST_FILES= lib/libmsocket.so \ include/msocket.h \ include/msocketutils.h -CFLAGS_aarch64+=-fPIC -DPIC -CFLAGS_amd64+= -fPIC -DPIC -CFLAGS_i386+= -fPIC -DPIC -CFLAGS_powerpc+= -fPIC -DPIC -CFLAGS_powerpc64+= -fPIC -DPIC -CFLAGS_powerpc64le+= -fPIC -DPIC -CFLAGS_powerpcspe+= -fPIC -DPIC +CFLAGS_aarch64=-fPIC -DPIC +CFLAGS_amd64= -fPIC -DPIC +CFLAGS_i386= -fPIC -DPIC +CFLAGS_powerpc= -fPIC -DPIC +CFLAGS_powerpc64= -fPIC -DPIC +CFLAGS_powerpc64le= -fPIC -DPIC +CFLAGS_powerpcspe= -fPIC -DPIC +CFLAGS_riscv64= -fPIC -DPIC DEBUG_CONFIGURE_ON= --enable-debug
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202106171028.15HASgkQ050498>