From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 41AEB1381F3 for ; Wed, 22 May 2013 23:54:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9620E0871; Wed, 22 May 2013 23:54:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7B6B0E0871 for ; Wed, 22 May 2013 23:54:31 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 94D3833E170 for ; Wed, 22 May 2013 23:54:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 11C58E4404 for ; Wed, 22 May 2013 23:54:29 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1369266829.2b41e23eaf727bdba8574f805d80916beff8621e.vapier@gentoo> Subject: [gentoo-commits] proj/gcc-config:master commit in: / X-VCS-Repository: proj/gcc-config X-VCS-Files: wrapper.c X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 2b41e23eaf727bdba8574f805d80916beff8621e X-VCS-Branch: master Date: Wed, 22 May 2013 23:54:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4b3b4e41-c59e-4155-ac52-96c4bd97cd2a X-Archives-Hash: c9b488214ee4c7d604d4afc58f2963aa commit: 2b41e23eaf727bdba8574f805d80916beff8621e Author: Mike Frysinger gentoo org> AuthorDate: Wed May 22 23:48:24 2013 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed May 22 23:53:49 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gcc-config.git;a=commit;h=2b41e23e build with 64bit interfaces We use stat(), so make sure we use the 64bit versions, else trying to stat() a file with 64bit inodes will randomly fail on us. URL: http://bugs.gentoo.org/471024 Signed-off-by: Mike Frysinger gentoo.org> --- wrapper.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/wrapper.c b/wrapper.c index 50c35a4..b00e818 100644 --- a/wrapper.c +++ b/wrapper.c @@ -11,6 +11,10 @@ # define USE_DEBUG 0 #endif +#ifndef _FILE_OFFSET_BITS +# define _FILE_OFFSET_BITS 64 /* #471024 */ +#endif + #include #include #include