Date: Sun, 28 Oct 2018 09:42:43 +0000 (UTC) From: Mark Linimon <linimon@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483252 - head/devel/socket_wrapper Message-ID: <201810280942.w9S9ghSK041728@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: linimon Date: Sun Oct 28 09:42:43 2018 New Revision: 483252 URL: https://svnweb.freebsd.org/changeset/ports/483252 Log: Fix build on GCC-based architectures. PR: 232115 Submitted by: Piotr Kubaj Approved by: portmgr (tier-2 blanket) Modified: head/devel/socket_wrapper/Makefile Modified: head/devel/socket_wrapper/Makefile ============================================================================== --- head/devel/socket_wrapper/Makefile Sun Oct 28 09:39:07 2018 (r483251) +++ head/devel/socket_wrapper/Makefile Sun Oct 28 09:42:43 2018 (r483252) @@ -15,6 +15,12 @@ BROKEN_aarch64= fails to compile: socket_wrapper.c:40 USES= cmake:outsource USE_LDCONFIG= yes +CFLAGS_mips= -Wno-error=int-to-pointer-cast -Wno-error=pointer-to-int-cast +CFLAGS_mips64= -Wno-error=int-to-pointer-cast -Wno-error=pointer-to-int-cast +CFLAGS_powerpcspe= -Wno-error=int-to-pointer-cast -Wno-error=pointer-to-int-cast +CFLAGS_powerpc= -Wno-error=int-to-pointer-cast -Wno-error=pointer-to-int-cast +CFLAGS_powerpc64= -Wno-error=int-to-pointer-cast -Wno-error=pointer-to-int-cast +CFLAGS_sparc64= -Wno-error=int-to-pointer-cast -Wno-error=pointer-to-int-cast CMAKE_ARGS= -DMAN_INSTALL_DIR:PATH="${PREFIX}/man" OPTIONS_DEFINE= TEST
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810280942.w9S9ghSK041728>