Fix for libxml-1.8.6.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@3106 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas 2000-10-31 19:40:35 +00:00
parent 2a5dc45753
commit 66115c4740
2 changed files with 9 additions and 0 deletions

View File

@ -28,6 +28,14 @@
#include "FileIOP.h"
#include <guile/gh.h>
/* Pulled from the libxml-1.8.8 header */
#ifndef xmlChildrenNode
#define xmlChildrenNode childs
#define xmlRootNode root
#endif
static gboolean
xml_add_str(xmlNodePtr p, const char *tag, const char *str,
gboolean include_if_empty) {

View File

@ -32,6 +32,7 @@
#include <assert.h>
#include <errno.h>
#include <glib.h>
#include <stdio.h>
#include <stdlib.h>