1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Chase libxml2 includes to unbreak build

This commit is contained in:
Kris Kennaway 2002-03-31 06:12:19 +00:00
parent 9d4e8d5589
commit ce9eb50340
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=57032
3 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,13 @@
--- minidom.c.orig Sat Mar 30 22:14:25 2002
+++ minidom.c Sat Mar 30 22:14:11 2002
@@ -23,8 +23,8 @@
#include <config.h>
#include <glib.h>
-#include <parser.h>
-#include <parserInternals.h>
+#include <libxml/parser.h>
+#include <libxml/parserInternals.h>
#include "minidom.h"

View File

@ -0,0 +1,11 @@
--- minidom.h.orig Sat Mar 30 22:14:22 2002
+++ minidom.h Sat Mar 30 22:14:08 2002
@@ -25,7 +25,7 @@
#define minidom_h
#include <glib.h>
-#include <parser.h>
+#include <libxml/parser.h>
#ifdef __cplusplus
extern "C" {

17
www/kannel/files/patch-ag Normal file
View File

@ -0,0 +1,17 @@
--- gw/wml_compiler.c.orig Sat Mar 30 22:08:15 2002
+++ gw/wml_compiler.c Sat Mar 30 22:08:44 2002
@@ -21,10 +21,10 @@
#include <string.h>
#include <math.h>
-#include <xmlmemory.h>
-#include <parser.h>
-#include <tree.h>
-#include <debugXML.h>
+#include <libxml/xmlmemory.h>
+#include <libxml/parser.h>
+#include <libxml/tree.h>
+#include <libxml/debugXML.h>
#include "gwlib/gwlib.h"
#include "wml_compiler.h"