mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-07-01 13:41:39 +03:00
Fixed the python Makefiles, corrected a bug showing up on ia64, changed
* configure.in libxslt.spec.in python/Makefile.am python/generator.py python/libxsl.py python/libxslt.c python/tests/Makefile.am: Fixed the python Makefiles, corrected a bug showing up on ia64, changed the name of the python internal module too Daniel
This commit is contained in:
@ -349,11 +349,12 @@ libxslt_xsltCleanup(PyObject *self, PyObject *args) {
|
||||
************************************************************************/
|
||||
static PyMethodDef libxsltMethods[] = {
|
||||
#include "libxslt-export.c"
|
||||
{ NULL, NULL, NULL, NULL }
|
||||
};
|
||||
|
||||
void init_libxslt(void) {
|
||||
void initlibxsltmod(void) {
|
||||
PyObject *m;
|
||||
m = Py_InitModule("_libxslt", libxsltMethods);
|
||||
m = Py_InitModule("libxsltmod", libxsltMethods);
|
||||
/* libxslt_xmlErrorInitialize(); */
|
||||
/*
|
||||
* Specific XSLT initializations
|
||||
|
Reference in New Issue
Block a user