svn commit: r536205 - head/www/varnish4

Piotr Kubaj pkubaj at FreeBSD.org
Fri May 22 14:09:34 UTC 2020


Author: pkubaj
Date: Fri May 22 14:09:33 2020
New Revision: 536205
URL: https://svnweb.freebsd.org/changeset/ports/536205

Log:
  www/varnish4: fix build on powerpc64 head
  
  Don't use -Werror:
  vmod_std_conversions.c:198:10: error: implicit conversion from 'long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Werror,-Wimplicit-int-float-conversion]

Modified:
  head/www/varnish4/Makefile

Modified: head/www/varnish4/Makefile
==============================================================================
--- head/www/varnish4/Makefile	Fri May 22 13:57:25 2020	(r536204)
+++ head/www/varnish4/Makefile	Fri May 22 14:09:33 2020	(r536205)
@@ -22,7 +22,7 @@ USES=		autoreconf cpe gmake libedit libtool ncurses pa
 		pkgconfig python:2.7,build readline shebangfix
 SHEBANG_FILES=	lib/libvcc/vmodtool.py
 CPE_VENDOR=	varnish-cache
-CFLAGS+=	-I${LOCALBASE}/include
+CFLAGS+=	-I${LOCALBASE}/include -Wno-error
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--localstatedir=${PREFIX} --enable-tests
 USE_LDCONFIG=	yes


More information about the svn-ports-all mailing list