diff options
author | koobs <koobs@FreeBSD.org> | 2013-12-05 21:33:17 +0800 |
---|---|---|
committer | koobs <koobs@FreeBSD.org> | 2013-12-05 21:33:17 +0800 |
commit | b9f137d7a37a2e7fad0c2de4946c1596add5cde3 (patch) | |
tree | 31a668a0e21836dcf4e3d19bd43b4272f9058a36 /lang/python27 | |
parent | 73b8fddaa7f959a666afddb766034408d8bba1ec (diff) | |
download | freebsd-ports-gnome-b9f137d7a37a2e7fad0c2de4946c1596add5cde3.tar.gz freebsd-ports-gnome-b9f137d7a37a2e7fad0c2de4946c1596add5cde3.tar.zst freebsd-ports-gnome-b9f137d7a37a2e7fad0c2de4946c1596add5cde3.zip |
lang/python27: Remove patch-configure, its now a NOOP
lang/python26, lang/python27 and lang/python31 now add
ac_cv_opt_olimit_ok=no to CONFIGURE_ENV to disable functionality that
was removed in Python 3.2+ [1]
Pending a backport of the commit [2] to 2.7, we can now remove the
locally maintained patch to configure that disabled the functionality
when CC = clang.
Apart from being narrower in scope than ac_cv_opt_olimit_ok=no, the patch
doesn't work for FreeBSD versions where clang *is* cc (eg: 10.0+)
[1] http://hg.python.org/lookup/r85656
[2] http://bugs.python.org/issue877121
Reviewed by: antoine
Diffstat (limited to 'lang/python27')
-rw-r--r-- | lang/python27/files/patch-configure | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lang/python27/files/patch-configure b/lang/python27/files/patch-configure deleted file mode 100644 index b0d43b5d373a..000000000000 --- a/lang/python27/files/patch-configure +++ /dev/null @@ -1,13 +0,0 @@ ---- 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 |