diff options
author | Marcus von Appen <mva@FreeBSD.org> | 2013-01-14 17:56:47 +0000 |
---|---|---|
committer | Marcus von Appen <mva@FreeBSD.org> | 2013-01-14 17:56:47 +0000 |
commit | 996e4b60c36911d3980b702d023befab50f79bda (patch) | |
tree | 3658dafedfcf7950b6c27aaed0b12e4f227ca16d /lang/python27 | |
parent | 18492fd79aac2e87b95fea453bae45079a853300 (diff) | |
download | ports-996e4b60c36911d3980b702d023befab50f79bda.tar.gz ports-996e4b60c36911d3980b702d023befab50f79bda.zip |
Notes
Diffstat (limited to 'lang/python27')
-rw-r--r-- | lang/python27/Makefile | 2 | ||||
-rw-r--r-- | lang/python27/files/patch-configure | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/lang/python27/Makefile b/lang/python27/Makefile index 414cb4300d8a..e33da15154f6 100644 --- a/lang/python27/Makefile +++ b/lang/python27/Makefile @@ -3,7 +3,7 @@ PORTNAME= python27 PORTVERSION= 2.7.3 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= lang python ipv6 MASTER_SITES= ${PYTHON_MASTER_SITES} MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR} diff --git a/lang/python27/files/patch-configure b/lang/python27/files/patch-configure new file mode 100644 index 000000000000..b0d43b5d373a --- /dev/null +++ b/lang/python27/files/patch-configure @@ -0,0 +1,13 @@ +--- configure.orig 2013-01-14 13:38:53.000000000 +0000 ++++ configure 2013-01-14 13:39:14.000000000 +0000 +@@ -5642,8 +5642,8 @@ + BASECFLAGS="$BASECFLAGS $ac_arch_flags" + fi + +-# disable check for icc since it seems to pass, but generates a warning +-if test "$CC" = icc ++# disable check for icc and clang since it seems to pass, but generates a warning ++if test "$CC" = icc -o "$CC" = clang + then + ac_cv_opt_olimit_ok=no + fi |