diff options
author | Alexey Neyman <stilor@att.net> | 2020-03-03 16:37:09 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2020-03-03 16:37:09 -0800 |
commit | 2ae68d915000f6edb9b903a2687332333df1ef40 (patch) | |
tree | 200823bb7b09c785fe749e72f8dd87cc85936298 /packages/uClibc-ng | |
parent | c969be1880f99b6da4d98afd7bda641b7868a717 (diff) | |
download | crosstool-ng-2ae68d915000f6edb9b903a2687332333df1ef40.tar.gz crosstool-ng-2ae68d915000f6edb9b903a2687332333df1ef40.tar.bz2 crosstool-ng-2ae68d915000f6edb9b903a2687332333df1ef40.zip |
Fix upstream for undeclared PAGE_SHIFT
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'packages/uClibc-ng')
-rw-r--r-- | packages/uClibc-ng/1.0.33/0000-missing-header.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/uClibc-ng/1.0.33/0000-missing-header.patch b/packages/uClibc-ng/1.0.33/0000-missing-header.patch new file mode 100644 index 00000000..05b0f619 --- /dev/null +++ b/packages/uClibc-ng/1.0.33/0000-missing-header.patch @@ -0,0 +1,20 @@ +commit 6f7c6883b72134d1ae28a6223ab9c9738d033867 +Author: Waldemar Brodkorb <wbx@openadk.org> +Date: Wed Feb 19 10:18:03 2020 +0100 + + malloc: add missing header for some arch (alpha) + +--- + libc/stdlib/malloc-standard/malloc.h | 1 + + 1 file changed, 1 insertion(+) + +--- a/libc/stdlib/malloc-standard/malloc.h ++++ b/libc/stdlib/malloc-standard/malloc.h +@@ -23,6 +23,7 @@ + #include <stdlib.h> + #include <sys/mman.h> + #include <bits/uClibc_mutex.h> ++#include <bits/uClibc_page.h> + + + |