View | Details | Raw Unified | Return to bug 104323
Collapse All | Expand All

(-)vtk-python/Makefile (+1 lines)
Lines 42-47 Link Here
42
.include "${MASTERDIR}/Makefile"
42
.include "${MASTERDIR}/Makefile"
43
43
44
post-patch: patch-common
44
post-patch: patch-common
45
	@${PATCH} ${PATCH_ARGS} < ${.CURDIR}/files/extra-patch-Common-vtkPythonUtil.cxx
45
46
46
do-install: install-cnotice install-binaries install-libs
47
do-install: install-cnotice install-binaries install-libs
47
	@${ECHO_MSG} "Installing vtk site package to ${PREFIX}/lib/vtk/python ..."
48
	@${ECHO_MSG} "Installing vtk site package to ${PREFIX}/lib/vtk/python ..."
(-)vtk-python/files/extra-patch-Common-vtkPythonUtil.cxx (+11 lines)
Line 0 Link Here
1
--- Common/vtkPythonUtil.cxx.orig	Thu Oct 12 03:11:22 2006
2
+++ Common/vtkPythonUtil.cxx	Thu Oct 12 03:11:33 2006
3
@@ -731,7 +731,7 @@
4
     }
5
   if (strcmp(name, "__doc__") == 0)
6
     {
7
-    char *doc = t->tp_doc;
8
+    const char *doc = t->tp_doc;
9
     if (doc != NULL)
10
       {
11
       return PyString_FromString(doc);

Return to bug 104323