svn commit: r542082 - head/net/udpxy

Piotr Kubaj pkubaj at FreeBSD.org
Sun Jul 12 13:44:49 UTC 2020


Author: pkubaj
Date: Sun Jul 12 13:44:48 2020
New Revision: 542082
URL: https://svnweb.freebsd.org/changeset/ports/542082

Log:
  net/udpxy: fix build on powerpc64 elfv2
  
  Ignore -Werror by passing -Wno-error to fix build:
  util.c:857:16: error: implicit conversion from 'long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Werror,-Wimplicit-int-float-conversion]

Modified:
  head/net/udpxy/Makefile

Modified: head/net/udpxy/Makefile
==============================================================================
--- head/net/udpxy/Makefile	Sun Jul 12 13:43:43 2020	(r542081)
+++ head/net/udpxy/Makefile	Sun Jul 12 13:44:48 2020	(r542082)
@@ -28,6 +28,8 @@ PLIST_FILES=	sbin/udpxy \
 		man/man1/udpxy.1.gz \
 		man/man1/udpxrec.1.gz
 
+CFLAGS+=	-Wno-error
+
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/udpxy ${STAGEDIR}${PREFIX}/sbin
 	${LN} -s udpxy ${STAGEDIR}${PREFIX}/sbin/udpxrec


More information about the svn-ports-all mailing list