1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
--- powertweak-0.99.4.orig/src/libpowertweak/profile.c
+++ powertweak-0.99.4/src/libpowertweak/profile.c
@@ -11,7 +11,7 @@
#include <stdlib.h>
#include <assert.h>
#include <string.h>
-#include <parser.h> /* libxml */
+#include <libxml/parser.h> /* libxml */
#include <powertweak.h>
--- powertweak-0.99.4.orig/src/backends/PCI/xml.c
+++ powertweak-0.99.4/src/backends/PCI/xml.c
@@ -13,7 +13,7 @@
#include <assert.h>
#include <powertweak.h>
#include <string.h>
-#include <parser.h>
+#include <libxml/parser.h>
#include "pci.h"
--- powertweak-0.99.4.orig/src/backends/CPU/x86/xml.c
+++ powertweak-0.99.4/src/backends/CPU/x86/xml.c
@@ -17,7 +17,7 @@
#include <assert.h>
#include <powertweak.h>
-#include <parser.h> /* libxml */
+#include <libxml/parser.h> /* libxml */
#include <libxmlcompat.h>
#include <sys/types.h> /* for readdir() */
--- powertweak-0.99.4.orig/src/backends/PCI/pcitweaks.c
+++ powertweak-0.99.4/src/backends/PCI/pcitweaks.c
@@ -21,7 +21,7 @@
#include "pci.h"
#include "PCILIB/pciutils.h"
-#include <tree.h>
+#include <libxml/tree.h>
extern int xmlDoValidityCheckingDefaultValue;
--- powertweak-0.99.4.orig/src/backends/proc/xml.c
+++ powertweak-0.99.4/src/backends/proc/xml.c
@@ -20,7 +20,7 @@
#include <dirent.h> /* for readdir() */
#include <powertweak.h>
-#include <parser.h> /* libxml */
+#include <libxml/parser.h> /* libxml */
#include <libxmlcompat.h>
#include "proc.h"
--- powertweak-0.99.4.orig/src/backends/proc/proctweaks.c
+++ powertweak-0.99.4/src/backends/proc/proctweaks.c
@@ -18,7 +18,7 @@
#include <config.h>
#include <string.h>
#include "proc.h"
-#include <tree.h>
+#include <libxml/tree.h>
#include <libxmlcompat.h>
--- powertweak-0.99.4.orig/src/include/libxmlcompat.h
+++ powertweak-0.99.4/src/include/libxmlcompat.h
@@ -12,7 +12,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
-#include <tree.h> /* libxml */
+#include <libxml/tree.h> /* libxml */
/* Check if this is 1.8 or 2.x */
#ifdef LIBXML_VERSION_NUMBER
--- powertweak-0.99.4.orig/src/backends/CPU/x86/cputweaks.c Tue Aug 6 20:39:01 2002
+++ powertweak-0.99.4/src/backends/CPU/x86cputweaks.c Tue Aug 6 20:39:09 2002
@@ -13,7 +13,7 @@
#include <powertweak.h>
#include <config.h>
#include <string.h>
-#include <tree.h>
+#include <libxml/tree.h>
#include <libxmlcompat.h>
/* for readdir/stat and friends */
|