diff options
author | Thomas Gellekum <tg@FreeBSD.org> | 2003-09-22 13:05:11 +0000 |
---|---|---|
committer | Thomas Gellekum <tg@FreeBSD.org> | 2003-09-22 13:05:11 +0000 |
commit | 4efa047e8dfa72ef295bb198d93e52f4eb6fb5e8 (patch) | |
tree | 2fcd1104dca9ee94faa01d58ea0e707a41c87158 /graphics | |
parent | 42f1248ee655c100f56abdd0d04c8ea14a442272 (diff) | |
download | ports-4efa047e8dfa72ef295bb198d93e52f4eb6fb5e8.tar.gz ports-4efa047e8dfa72ef295bb198d93e52f4eb6fb5e8.zip |
Notes
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/skencil/files/patch-Pax::paxtkinter.c | 37 | ||||
-rw-r--r-- | graphics/sketch/files/patch-Pax::paxtkinter.c | 37 |
2 files changed, 74 insertions, 0 deletions
diff --git a/graphics/skencil/files/patch-Pax::paxtkinter.c b/graphics/skencil/files/patch-Pax::paxtkinter.c new file mode 100644 index 000000000000..7a27ea224773 --- /dev/null +++ b/graphics/skencil/files/patch-Pax::paxtkinter.c @@ -0,0 +1,37 @@ +$FreeBSD$ + +*** /tmp/paxtkinter.c210O-r Tue Sep 16 18:14:21 2003 +--- Pax/paxtkinter.c Tue Sep 16 18:14:21 2003 +*************** +*** 1755,1760 **** +--- 1755,1774 ---- + } + #endif + ++ /* Yet another sketch specific hack: Starting with Python 2.3 Tkinter ++ * calls the wantobjects method, so we provide one that doesn't do ++ * anything. ++ */ ++ static PyObject * ++ Tkapp_WantObjects(PyObject *self, PyObject *args) ++ { ++ int wantobjects; ++ if (!PyArg_ParseTuple(args, "i:wantobjects", &wantobjects)) ++ return NULL; ++ ++ Py_INCREF(Py_None); ++ return Py_None; ++ } + + + /**** Tkapp Method List ****/ +*************** +*** 1797,1802 **** +--- 1811,1817 ---- + {"interpaddr", Tkapp_InterpAddr, 1}, + {"utf8_to_latin1", Tkapp_UTF8_to_Latin1, 1}, + {"utf8_to_system", Tkapp_UTF8_to_System, 1}, ++ {"wantobjects", Tkapp_WantObjects, METH_VARARGS}, + {NULL, NULL} + }; + diff --git a/graphics/sketch/files/patch-Pax::paxtkinter.c b/graphics/sketch/files/patch-Pax::paxtkinter.c new file mode 100644 index 000000000000..7a27ea224773 --- /dev/null +++ b/graphics/sketch/files/patch-Pax::paxtkinter.c @@ -0,0 +1,37 @@ +$FreeBSD$ + +*** /tmp/paxtkinter.c210O-r Tue Sep 16 18:14:21 2003 +--- Pax/paxtkinter.c Tue Sep 16 18:14:21 2003 +*************** +*** 1755,1760 **** +--- 1755,1774 ---- + } + #endif + ++ /* Yet another sketch specific hack: Starting with Python 2.3 Tkinter ++ * calls the wantobjects method, so we provide one that doesn't do ++ * anything. ++ */ ++ static PyObject * ++ Tkapp_WantObjects(PyObject *self, PyObject *args) ++ { ++ int wantobjects; ++ if (!PyArg_ParseTuple(args, "i:wantobjects", &wantobjects)) ++ return NULL; ++ ++ Py_INCREF(Py_None); ++ return Py_None; ++ } + + + /**** Tkapp Method List ****/ +*************** +*** 1797,1802 **** +--- 1811,1817 ---- + {"interpaddr", Tkapp_InterpAddr, 1}, + {"utf8_to_latin1", Tkapp_UTF8_to_Latin1, 1}, + {"utf8_to_system", Tkapp_UTF8_to_System, 1}, ++ {"wantobjects", Tkapp_WantObjects, METH_VARARGS}, + {NULL, NULL} + }; + |