aboutsummaryrefslogtreecommitdiffstats
path: root/www
diff options
context:
space:
mode:
authorflo <flo@FreeBSD.org>2014-10-16 15:24:12 +0800
committerflo <flo@FreeBSD.org>2014-10-16 15:24:12 +0800
commit31fc93b463472f9e2189c7c1518a86a0b96ad335 (patch)
treea5e20171c4b27f17482e8e744bbc951be4f6530e /www
parentf74846b6890afb2e5b9c9df990ac2086c15a5e8d (diff)
downloadfreebsd-ports-gnome-31fc93b463472f9e2189c7c1518a86a0b96ad335.tar.gz
freebsd-ports-gnome-31fc93b463472f9e2189c7c1518a86a0b96ad335.tar.zst
freebsd-ports-gnome-31fc93b463472f9e2189c7c1518a86a0b96ad335.zip
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
Diffstat (limited to 'www')
-rw-r--r--www/squid/Makefile5
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>