This package had an absolute path for sys/types.h, which doesn't make much sense. It breaks on newer Ubuntu systems, and probably many others once multiarch becomes more common. This patch makes the types a relative path, and allows the system to use whatever include paths it feels are correct. diff -Naurp elftosb-10.12.01-orig/common/stdafx.h elftosb-10.12.01/common/stdafx.h --- elftosb-10.12.01-orig/common/stdafx.h 2012-07-12 13:30:10.990249396 -0400 +++ elftosb-10.12.01/common/stdafx.h 2012-07-12 13:30:06.858249391 -0400 @@ -27,7 +27,7 @@ // For Linux systems only, types.h only defines the signed // integer types. This is not professional code. // Update: They are defined in the header files in the more recent version of redhat enterprise gcc. -#include "/usr/include/sys/types.h" +#include #include //typedef unsigned long uint32_t; //typedef unsigned short uint16_t; dex : openwrt/upstream
upstream openwrtJames
aboutsummaryrefslogtreecommitdiffstats
blob: 1eda4cc4f14f0aafb1ce1b0853f95734bdee4198 (plain)
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
93
94
95
96
97
98
99