diff options
author | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2010-07-10 20:25:48 +0200 |
---|---|---|
committer | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2010-07-10 20:25:48 +0200 |
commit | a31766f3b10695f9c0cfa051f66d982b0845e2fa (patch) | |
tree | 38ff258b37a03d01c093651f2b3f55885795af9f /recipes/glibc/glibc_2.10.1.bb | |
parent | 5977a7637c98dd5d8454d267c99a21b2e78eda04 (diff) |
glibc 2.10.1: added ifdef around PTR*MANGLE
some of the calls to PTR_MANGLE and PTR_UNMANGLE were
guarded by #ifdef's whereas others were not.
This causes problems on architectures that do not
have those macros.
Fix is to add ifdefs around those invocations
Also added PR to the recipe
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/glibc/glibc_2.10.1.bb')
-rw-r--r-- | recipes/glibc/glibc_2.10.1.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/recipes/glibc/glibc_2.10.1.bb b/recipes/glibc/glibc_2.10.1.bb index 6f0d0f6971..21873ec7a3 100644 --- a/recipes/glibc/glibc_2.10.1.bb +++ b/recipes/glibc/glibc_2.10.1.bb @@ -1,5 +1,7 @@ require glibc.inc +PR = "${INC_PR}.1" + ARM_INSTRUCTION_SET = "arm" PACKAGES_DYNAMIC = "libc6*" @@ -57,6 +59,7 @@ SRC_URI = "ftp://ftp.gnu.org/pub/gnu/glibc/glibc-${PV}.tar.bz2;name=archive \ file://arm-lowlevellock-include-tls.patch \ file://glibc-2.9-enable-binutils-2.2.patch \ file://armv4t-interworking.patch \ + file://PTR_MANGLE.patch \ " # Build fails on sh3 and sh4 without additional patches |