Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 Jul 2020 13:44:48 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r542082 - head/net/udpxy
Message-ID:  <202007121344.06CDimPg070377@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007121344.06CDimPg070377>