mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-07-29 15:41:13 +03:00
fixes for compiling without config.h Daniel
* python/generator.py python/libxslt.c: fixes for compiling without config.h Daniel
This commit is contained in:
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
|||||||
|
Sat Nov 23 12:23:32 CET 2002 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
|
* python/generator.py python/libxslt.c: fixes for compiling
|
||||||
|
without config.h
|
||||||
|
|
||||||
|
Thu Nov 21 18:51:29 CET 2002 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
|
* libxslt/transform.c: fixed bug #99168 select evaluating to
|
||||||
|
a node list check
|
||||||
|
|
||||||
Thu Nov 21 15:12:33 CET 2002 Daniel Veillard <daniel@veillard.com>
|
Thu Nov 21 15:12:33 CET 2002 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
* tests/documents/result.xhtml: the XHTML1 serialization change
|
* tests/documents/result.xhtml: the XHTML1 serialization change
|
||||||
|
@ -473,7 +473,7 @@ def buildStubs():
|
|||||||
export.write("/* Generated */\n\n")
|
export.write("/* Generated */\n\n")
|
||||||
wrapper = open("libxslt-py.c", "w")
|
wrapper = open("libxslt-py.c", "w")
|
||||||
wrapper.write("/* Generated */\n\n")
|
wrapper.write("/* Generated */\n\n")
|
||||||
wrapper.write("#include \"config.h\"\n")
|
# wrapper.write("#include \"config.h\"\n")
|
||||||
wrapper.write("#include <libxslt/xsltconfig.h>\n")
|
wrapper.write("#include <libxslt/xsltconfig.h>\n")
|
||||||
wrapper.write("#include \"libxslt_wrap.h\"\n")
|
wrapper.write("#include \"libxslt_wrap.h\"\n")
|
||||||
wrapper.write("#include \"libxslt-py.h\"\n\n")
|
wrapper.write("#include \"libxslt-py.h\"\n\n")
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
* daniel@veillard.com
|
* daniel@veillard.com
|
||||||
*/
|
*/
|
||||||
#include <Python.h>
|
#include <Python.h>
|
||||||
#include "config.h"
|
/* #include "config.h" */
|
||||||
#include <libxml/xmlmemory.h>
|
#include <libxml/xmlmemory.h>
|
||||||
#include <libxml/tree.h>
|
#include <libxml/tree.h>
|
||||||
#include <libxml/xpath.h>
|
#include <libxml/xpath.h>
|
||||||
|
Reference in New Issue
Block a user