From 473f7fc2dc1cba782abaf6af536acb7a7799336e Mon Sep 17 00:00:00 2001 From: Ruslan Makhmatkhanov Date: Mon, 16 Jul 2012 17:04:29 +0000 Subject: - remove expired ports * lang/python24 and lang/python25: unmaintained upstream * www/zope and www/zope211: unmaintained upstream (the only consumers of python24) - clean-up python versions < 2.6 from lang/python-doc-html - clean-up python24/25 from Mk/bsd.ports.mk - add www/zope213 glue to bsd.python.mk - clean-up zope versions != 2.13 from bsd.python.mk Submitted by: miwi (based on) Approved by: portmgr (miwi) --- lang/python24/files/patch-Python::ceval.c | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 lang/python24/files/patch-Python::ceval.c (limited to 'lang/python24/files/patch-Python::ceval.c') diff --git a/lang/python24/files/patch-Python::ceval.c b/lang/python24/files/patch-Python::ceval.c deleted file mode 100644 index 057d4b6a066e..000000000000 --- a/lang/python24/files/patch-Python::ceval.c +++ /dev/null @@ -1,16 +0,0 @@ ---- Python/ceval.c.orig Wed Nov 24 03:06:08 2004 -+++ Python/ceval.c Wed Dec 1 22:29:37 2004 -@@ -414,8 +414,11 @@ - - /* The interpreter's recursion limit */ - --static int recursion_limit = 1000; --int _Py_CheckRecursionLimit = 1000; -+#ifndef PYTHON_DEFAULT_RECURSION_LIMIT -+#define PYTHON_DEFAULT_RECURSION_LIMIT 1000 -+#endif -+static int recursion_limit = PYTHON_DEFAULT_RECURSION_LIMIT; -+int _Py_CheckRecursionLimit = PYTHON_DEFAULT_RECURSION_LIMIT; - - int - Py_GetRecursionLimit(void) -- cgit v1.2.3