svn commit: r537104 - head/devel/socket_wrapper

Mikael Urankar mikael at FreeBSD.org
Sat May 30 19:03:15 UTC 2020


Author: mikael
Date: Sat May 30 19:03:14 2020
New Revision: 537104
URL: https://svnweb.freebsd.org/changeset/ports/537104

Log:
  devel/socket_wrapper: Fix build on aarch64
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/devel/socket_wrapper/Makefile

Modified: head/devel/socket_wrapper/Makefile
==============================================================================
--- head/devel/socket_wrapper/Makefile	Sat May 30 19:03:11 2020	(r537103)
+++ head/devel/socket_wrapper/Makefile	Sat May 30 19:03:14 2020	(r537104)
@@ -10,11 +10,10 @@ COMMENT=		Library passing all socket communications th
 
 LICENSE=		GPLv3
 
-BROKEN_aarch64=		fails to compile: socket_wrapper.c:4036:9: cast to 'void *' from smaller integer type 'uintptr_t' (aka 'unsigned int')
-
 USES=			cmake
 USE_LDCONFIG=		yes
 
+CFLAGS_aarch64=	-Wno-error=int-to-pointer-cast -Wno-error=pointer-to-int-cast
 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


More information about the svn-ports-head mailing list