ramips: Add a tool to create JCG factory images
[openwrt.git] / tools / elftosb / patches / 002-fix-header-path.patch
1 This package had an absolute path for sys/types.h, which doesn't
2 make much sense. It breaks on newer Ubuntu systems, and probably many
3 others once multiarch becomes more common.
4
5 This patch makes the types a relative path, and allows the system
6 to use whatever include paths it feels are correct.
7
8 diff -Naurp elftosb-10.12.01-orig/common/stdafx.h elftosb-10.12.01/common/stdafx.h
9 --- elftosb-10.12.01-orig/common/stdafx.h       2012-07-12 13:30:10.990249396 -0400
10 +++ elftosb-10.12.01/common/stdafx.h    2012-07-12 13:30:06.858249391 -0400
11 @@ -27,7 +27,7 @@
12  // For Linux systems only, types.h only defines the signed
13  // integer types.  This is not professional code.
14  // Update: They are defined in the header files in the more recent version of redhat enterprise gcc.
15 -#include "/usr/include/sys/types.h"
16 +#include <sys/types.h>
17  #include <stdint.h>
18  //typedef unsigned long uint32_t;
19  //typedef unsigned short uint16_t;