patches/uClibc/0.9.30.2/280-rpc-fix-typo-in-version-mismatch-msg.patch
author "Bryan Hundven" <bryanhundven@gmail.com>
Thu Mar 01 15:23:49 2012 -0800 (2012-03-01)
changeset 2909 28ac8fbd9e6a
permissions -rw-r--r--
libg/eglibc: add updated eglibc 2.15

Includes a patch to remove __builtin_expect test:

In eglibc-2.15, the build breaks in configure while testing
for the existance of __builtin_expect. It fails with newer
versions of gcc.

This patch is a modification of an upstream change in glibc
mainline (to be 2.16) to fix the following error:

[CFG ] checking for __builtin_expect... no
[ERROR] configure: error: support for __builtin_expect needed

http://sourceware.org/git/?p=glibc.git;a=commit;h=3857022a761ea7251f8e5c0e45d382ebc3e34cf9

Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
[yann.morin.1998@free.fr: coalesce both patches into a single changeset]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
yann@1819
     1
From 83a09cd5c9ed9afd87a7d1d17319c2fd2203ad0f Mon Sep 17 00:00:00 2001
yann@1819
     2
From: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
yann@1819
     3
Date: Thu, 21 Jan 2010 10:36:13 +0100
yann@1819
     4
Subject: [PATCH 04/15] rpc: fix typo in version mismatch msg
yann@1819
     5
yann@1819
     6
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
yann@1819
     7
---
yann@1819
     8
 libc/inet/rpc/rpc_prot.c |    2 +-
yann@1819
     9
 1 files changed, 1 insertions(+), 1 deletions(-)
yann@1819
    10
yann@1819
    11
diff --git a/libc/inet/rpc/rpc_prot.c b/libc/inet/rpc/rpc_prot.c
yann@1819
    12
index 74658e6..229f988 100644
yann@1819
    13
--- a/libc/inet/rpc/rpc_prot.c
yann@1819
    14
+++ b/libc/inet/rpc/rpc_prot.c
yann@1819
    15
@@ -229,7 +229,7 @@ rejected (enum reject_stat rjct_stat,
yann@1819
    16
 {
yann@1819
    17
   switch (rjct_stat)
yann@1819
    18
     {
yann@1819
    19
-    case RPC_VERSMISMATCH:
yann@1819
    20
+    case RPC_MISMATCH:
yann@1819
    21
       error->re_status = RPC_VERSMISMATCH;
yann@1819
    22
       return;
yann@1819
    23
     case AUTH_ERROR:
yann@1819
    24
-- 
yann@1819
    25
1.6.6.1
yann@1819
    26