mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-23 13:36:15 +00:00
337b0c80cb
Refresh all tools patches now that tools/refresh correctly works. CI now checks for them and actively complain if tools have unrefreshed patches. Signed-off-by: Rosen Penev <rosenp@gmail.com> [ reword commit message ] Link: https://github.com/openwrt/openwrt/pull/15524 Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
19 lines
726 B
Diff
19 lines
726 B
Diff
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.
|
|
|
|
--- a/common/stdafx.h
|
|
+++ b/common/stdafx.h
|
|
@@ -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 <sys/types.h>
|
|
#include <stdint.h>
|
|
//typedef unsigned long uint32_t;
|
|
//typedef unsigned short uint16_t;
|