summaryrefslogtreecommitdiffstats
path: root/kig/boost-python1.30-gcc3.2.patch
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commitce599e4f9f94b4eb00c1b5edb85bce5431ab3df2 (patch)
treed3bb9f5d25a2dc09ca81adecf39621d871534297 /kig/boost-python1.30-gcc3.2.patch
downloadtdeedu-ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2.tar.gz
tdeedu-ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kig/boost-python1.30-gcc3.2.patch')
-rw-r--r--kig/boost-python1.30-gcc3.2.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/kig/boost-python1.30-gcc3.2.patch b/kig/boost-python1.30-gcc3.2.patch
new file mode 100644
index 00000000..5b87a2b3
--- /dev/null
+++ b/kig/boost-python1.30-gcc3.2.patch
@@ -0,0 +1,13 @@
+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 <class U>
+ static inline PyTypeObject* get_class_object_impl(U const volatile* p)
+ {
+- PyTypeObject* derived = get_derived_class_object(is_polymorphic<U>::type(), p);
++ PyTypeObject* derived = get_derived_class_object(typename is_polymorphic<U>::type(), p);
+ if (derived)
+ return derived;
+ return converter::registered<T>::converters.get_class_object();