Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 Oct 2014 07:24:13 +0000 (UTC)
From:      Florian Smeets <flo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r370975 - head/www/squid
Message-ID:  <201410160724.s9G7ODAD056020@svn.freebsd.org>

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



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