#include <parser.h> and <xmlmemory.h> instead of <gnome-xml/parser.h> and

* gal/util/e-xml-utils.c: #include <parser.h> and <xmlmemory.h>
instead of <gnome-xml/parser.h> and <gnome-xml/xmlmemory.h>.  In
fact, the latter is incompatible with what `gnome-config --cflags
xml' is assuming, and breaks in the case where gnome-xml is not
installed in /usr/local.

svn path=/trunk/; revision=16424
This commit is contained in:
Ettore Perazzoli
2002-04-10 19:13:28 +00:00
parent 8ded5c9c10
commit 796b9fe197

View File

@ -28,8 +28,10 @@
#include <locale.h>
#include <math.h>
#include <string.h>
#include <gnome-xml/parser.h>
#include <gnome-xml/xmlmemory.h>
#include <parser.h>
#include <xmlmemory.h>
#include "gal/util/e-i18n.h"
#include "gal/util/e-util.h"