From owner-svn-ports-head@FreeBSD.ORG Thu Oct 16 07:24:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7903FD23; Thu, 16 Oct 2014 07:24:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6521639F; Thu, 16 Oct 2014 07:24:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9G7ODF9056021; Thu, 16 Oct 2014 07:24:13 GMT (envelope-from flo@FreeBSD.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9G7ODAD056020; Thu, 16 Oct 2014 07:24:13 GMT (envelope-from flo@FreeBSD.org) Message-Id: <201410160724.s9G7ODAD056020@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: flo set sender to flo@FreeBSD.org using -f From: Florian Smeets Date: Thu, 16 Oct 2014 07:24:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370975 - head/www/squid X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Oct 2014 07:24:13 -0000 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