From patchwork Fri Feb 15 14:43:09 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?b?SsOpcsO0bWUgQkFSRE9O?= X-Patchwork-Id: 220752 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 31A492C007A for ; Sat, 16 Feb 2013 01:43:42 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=sourceware.org; s=default; x=1361544223; h=Comment: DomainKey-Signature:Received:Received:Received:Received: MIME-Version:Received:Date:Message-ID:Subject:From:To: Content-Type:Content-Transfer-Encoding:Mailing-List:Precedence: List-Id:List-Unsubscribe:List-Subscribe:List-Archive:List-Post: List-Help:Sender:Delivered-To; bh=hpsPdCan+lFNEcdHuW3/1HyqHSU=; b=kko6yy4vg90MePjtJpEmf5ee6v/J0zp3NLYIL78fPXYtK1GpRsYnh2mza3YS9C TfNKS7KiQFBH088xTheAQUYPd+jEE9esS7CbY75Ry47BOPZjQoww2B6rJOeKmesB 15/QtJ/Qj5VL8ope2fcrI0ezcW7wcyH8HdQnHlWSY687M= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=sourceware.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:MIME-Version:X-Received:Received:Date:Message-ID:Subject:From:To:Content-Type:Content-Transfer-Encoding:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Subscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=ktOx9m6Zokeoa7dbdTw5FXo7mJdElNCX2BsoFLyqcEZxOFYQmqhRbgyqeq5/Oq EdpBtIXxxAuORzbbCO5Py5AWjXPrZzSeUdFedtumBvdR+fGMKp4mYUFsX0iyv8uL IZKXmfMB09Ev4VbSUOYMa1dpiBT+cTJ2uGp/06iptncHM=; Received: (qmail 21609 invoked by alias); 15 Feb 2013 14:43:37 -0000 Received: (qmail 21598 invoked by uid 22791); 15 Feb 2013 14:43:35 -0000 X-SWARE-Spam-Status: No, hits=-4.8 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, KHOP_RCVD_TRUST, RCVD_IN_DNSWL_LOW, RCVD_IN_HOSTKARMA_YE, TW_BF X-Spam-Check-By: sourceware.org Received: from mail-we0-f174.google.com (HELO mail-we0-f174.google.com) (74.125.82.174) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 15 Feb 2013 14:43:28 +0000 Received: by mail-we0-f174.google.com with SMTP id r6so2921127wey.19 for ; Fri, 15 Feb 2013 06:43:27 -0800 (PST) MIME-Version: 1.0 X-Received: by 10.180.102.7 with SMTP id fk7mr4554425wib.27.1360939389945; Fri, 15 Feb 2013 06:43:09 -0800 (PST) Received: by 10.180.104.193 with HTTP; Fri, 15 Feb 2013 06:43:09 -0800 (PST) Date: Fri, 15 Feb 2013 15:43:09 +0100 Message-ID: Subject: [PATCH] to fix : crosstool-NG-1.18.0 - obsolete RPC headers are not installed for Glibc From: =?ISO-8859-1?Q?J=E9r=F4me_BARDON?= To: crossgcc@sourceware.org X-IsSubscribed: yes Mailing-List: contact crossgcc-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: crossgcc-owner@sourceware.org Delivered-To: mailing list crossgcc@sourceware.org Here is a patch to fix this : ============================================================== Regards, Jérôme BARDON Thomson Video Networks 2013/2/15 Jérôme BARDON : > Hi, > > In crosstool-NG-1.18.0 the obsolete RPC headers (installed with the > --enable-obsolete-rpc option) are only installed for eGlibc. > > This is a problem for me as my rootfs needs RPC and Glibc. > > > Jérôme BARDON > Thomson Video Networks --- For unsubscribe information see http://sourceware.org/lists.html#faq ================================================================ # HG changeset patch # User Jerome BARDON # Date 1360923357 -3600 # Node ID 367d677bfbeee5905310cbf0bf4636f76a786192 # Parent fb662f18d002da9303aba2ea933c5204b789e752 also add RPC headers install for Glibc diff -r fb662f18d002 -r 367d677bfbee scripts/build/libc/glibc-eglibc.sh-common --- a/scripts/build/libc/glibc-eglibc.sh-common Fri Feb 15 10:46:40 2013 +0100 +++ b/scripts/build/libc/glibc-eglibc.sh-common Fri Feb 15 11:15:57 2013 +0100 @@ -222,7 +222,9 @@ OPTIMIZE=-O2 # Also, if those two are missing, iconv build breaks extra_config+=( --disable-debug --disable-sanity-checks ) - ;; + # always include rpc, the user can still override it with TI-RPC + extra_config+=( --enable-obsolete-rpc ) + ;; esac # Add some default glibc config options if not given by user.