blob: 5099b296447f802fc543b027a086c7e4254036d4 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001This package had an absolute path for sys/types.h, which doesn't
2make much sense. It breaks on newer Ubuntu systems, and probably many
3others once multiarch becomes more common.
4
5This patch makes the types a relative path, and allows the system
6to use whatever include paths it feels are correct.
7
8--- a/common/stdafx.h
9+++ b/common/stdafx.h
10@@ -27,7 +27,7 @@
11 // For Linux systems only, types.h only defines the signed
12 // integer types. This is not professional code.
13 // Update: They are defined in the header files in the more recent version of redhat enterprise gcc.
14-#include "/usr/include/sys/types.h"
15+#include <sys/types.h>
16 #include <stdint.h>
17 //typedef unsigned long uint32_t;
18 //typedef unsigned short uint16_t;