svn commit: r370975 - head/www/squid

Florian Smeets flo at FreeBSD.org
Thu Oct 16 07:24:13 UTC 2014


Author: flo
Date: Thu Oct 16 07:24:12 2014
New Revision: 370975
URL: https://svnweb.freebsd.org/changeset/ports/370975
QAT: https://qat.redports.org/buildarchive/r370975/

Log:
  Since http://bazaar.launchpad.net/~squid/squid/3-trunk/revision/12842,
  Squid's configure script defaults to -march=native, if the flag is
  supported by the compiler.  And this even *overrides* your own specified
  CPUTYPE or -march= flag!
  
  That could cause squid to crash when using a package that was built on a
  newer CPU type that the one where the package would run on.
  
  Submitted by:	dim

Modified:
  head/www/squid/Makefile

Modified: head/www/squid/Makefile
==============================================================================
--- head/www/squid/Makefile	Thu Oct 16 07:19:52 2014	(r370974)
+++ head/www/squid/Makefile	Thu Oct 16 07:24:12 2014	(r370975)
@@ -2,7 +2,7 @@
 
 PORTNAME=	squid
 PORTVERSION=	3.4.8
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	www ipv6
 MASTER_SITES=	http://www.squid-cache.org/Versions/v3/${PORTVERSION:R}/ \
 		http://www2.us.squid-cache.org/Versions/v3/${PORTVERSION:R}/ \
@@ -181,7 +181,8 @@ CONFIGURE_ARGS=	--with-default-user=squi
 		--disable-epoll \
 		--disable-linux-netfilter \
 		--disable-linux-tproxy \
-		--disable-translation
+		--disable-translation \
+		--disable-arch-native
 
 .include <bsd.port.options.mk>
 


More information about the svn-ports-head mailing list