From b827b9b065dce9d1e9cdc5c7123f59c2caefc5c6 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Sat, 23 Nov 2002 11:25:00 +0000 Subject: [PATCH] fixes for compiling without config.h Daniel * python/generator.py python/libxslt.c: fixes for compiling without config.h Daniel --- ChangeLog | 10 ++++++++++ python/generator.py | 2 +- python/libxslt.c | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index cb89475f..683f89ae 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +Sat Nov 23 12:23:32 CET 2002 Daniel Veillard + + * python/generator.py python/libxslt.c: fixes for compiling + without config.h + +Thu Nov 21 18:51:29 CET 2002 Daniel Veillard + + * libxslt/transform.c: fixed bug #99168 select evaluating to + a node list check + Thu Nov 21 15:12:33 CET 2002 Daniel Veillard * tests/documents/result.xhtml: the XHTML1 serialization change diff --git a/python/generator.py b/python/generator.py index 67299bac..7f342cdf 100755 --- a/python/generator.py +++ b/python/generator.py @@ -473,7 +473,7 @@ def buildStubs(): export.write("/* Generated */\n\n") wrapper = open("libxslt-py.c", "w") wrapper.write("/* Generated */\n\n") - wrapper.write("#include \"config.h\"\n") +# wrapper.write("#include \"config.h\"\n") wrapper.write("#include \n") wrapper.write("#include \"libxslt_wrap.h\"\n") wrapper.write("#include \"libxslt-py.h\"\n\n") diff --git a/python/libxslt.c b/python/libxslt.c index 7b115a66..fed2d1c8 100644 --- a/python/libxslt.c +++ b/python/libxslt.c @@ -12,7 +12,7 @@ * daniel@veillard.com */ #include -#include "config.h" +/* #include "config.h" */ #include #include #include