diff options
author | Florian Smeets <flo@FreeBSD.org> | 2014-10-16 07:24:12 +0000 |
---|---|---|
committer | Florian Smeets <flo@FreeBSD.org> | 2014-10-16 07:24:12 +0000 |
commit | 26cf8a51789ae59d093ec70c70f4c4866196a025 (patch) | |
tree | a5e20171c4b27f17482e8e744bbc951be4f6530e /www/squid/Makefile | |
parent | net/hostapd: Upgrade version 2.2 => 2.3 (diff) |
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
Notes
Notes:
svn path=/head/; revision=370975
Diffstat (limited to '')
-rw-r--r-- | www/squid/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/www/squid/Makefile b/www/squid/Makefile index 2dc3015ed38c..20a88e9f12a0 100644 --- a/www/squid/Makefile +++ b/www/squid/Makefile @@ -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=squid \ --disable-epoll \ --disable-linux-netfilter \ --disable-linux-tproxy \ - --disable-translation + --disable-translation \ + --disable-arch-native .include <bsd.port.options.mk> |