From 1fe815e31c4211b9b98028c55e0438f77735aa8a Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Mon, 26 Nov 2012 17:32:44 -0600 Subject: [PATCH] Remove old *.patch files. Code is already merged or obsolete. --- kig/README.boost-python1.30-gcc3.2 | 19 ------------------- kig/boost-python1.30-gcc3.2.patch | 13 ------------- 2 files changed, 32 deletions(-) delete mode 100644 kig/README.boost-python1.30-gcc3.2 delete mode 100644 kig/boost-python1.30-gcc3.2.patch diff --git a/kig/README.boost-python1.30-gcc3.2 b/kig/README.boost-python1.30-gcc3.2 deleted file mode 100644 index cafda75e..00000000 --- a/kig/README.boost-python1.30-gcc3.2 +++ /dev/null @@ -1,19 +0,0 @@ -There is a bug in Boost.Python version 1.30 when compiled with GCC -3.2. This causes an error on compiling. It is a known problem, and -due to the stricter typename checking in more recent GCC versions. -The new Boost.Python version will contain a fix for this problem, but -it might take some more months for this version to become available, -and some distributions ( including Debian, not including Red Hat ( at -this time, 22-9-2003, at least ) ). In the mean time, I have included -a patch to the boost.python headers in the Kig distribution that fixes -this problem. It is called boost-python1.30-gcc3.2.patch, and should -be applied in the following way. - -Open a console window, and go to the directory containing the -Boost.Python headers. This will most likely be called something like -"/usr/include/boost/python/". Then execute the following commands ( -before giving these commands, replace "/dir/to/kig/distribution/" by -the directory where you put the downloaded kig distribution ): - -cd object -patch make_ptr_instance.hpp < /dir/to/kig/distribution/boost-python1.30-gcc3.2.patch diff --git a/kig/boost-python1.30-gcc3.2.patch b/kig/boost-python1.30-gcc3.2.patch deleted file mode 100644 index 5b87a2b3..00000000 --- a/kig/boost-python1.30-gcc3.2.patch +++ /dev/null @@ -1,13 +0,0 @@ -Only in python/converter: as_to_python_function.hpp~ -diff -u -r python-old/object/make_ptr_instance.hpp python/object/make_ptr_instance.hpp ---- python-old/object/make_ptr_instance.hpp 2003-04-22 14:35:28.000000000 +0200 -+++ python/object/make_ptr_instance.hpp 2003-06-28 15:09:05.000000000 +0200 -@@ -34,7 +34,7 @@ - template - static inline PyTypeObject* get_class_object_impl(U const volatile* p) - { -- PyTypeObject* derived = get_derived_class_object(is_polymorphic::type(), p); -+ PyTypeObject* derived = get_derived_class_object(typename is_polymorphic::type(), p); - if (derived) - return derived; - return converter::registered::converters.get_class_object();