diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-04-11 03:13:28 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-04-11 03:13:28 +0800 |
commit | 796b9fe197173d909a1f02e04bd25c5dafff350a (patch) | |
tree | 880d829fc22091422f289b882ff402d0c7f8cff4 | |
parent | 8ded5c9c10e4079fded6889ec4b10c37226468d4 (diff) | |
download | gsoc2013-evolution-796b9fe197173d909a1f02e04bd25c5dafff350a.tar gsoc2013-evolution-796b9fe197173d909a1f02e04bd25c5dafff350a.tar.gz gsoc2013-evolution-796b9fe197173d909a1f02e04bd25c5dafff350a.tar.bz2 gsoc2013-evolution-796b9fe197173d909a1f02e04bd25c5dafff350a.tar.lz gsoc2013-evolution-796b9fe197173d909a1f02e04bd25c5dafff350a.tar.xz gsoc2013-evolution-796b9fe197173d909a1f02e04bd25c5dafff350a.tar.zst gsoc2013-evolution-796b9fe197173d909a1f02e04bd25c5dafff350a.zip |
#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
-rw-r--r-- | e-util/e-xml-utils.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/e-util/e-xml-utils.c b/e-util/e-xml-utils.c index 0075f73214..fa4f96c1a2 100644 --- a/e-util/e-xml-utils.c +++ b/e-util/e-xml-utils.c @@ -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" |