From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17059 invoked by alias); 18 Nov 2014 10:19:24 -0000 Mailing-List: contact libffi-discuss-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libffi-discuss-owner@sourceware.org Received: (qmail 17050 invoked by uid 89); 18 Nov 2014 10:19:23 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: e06smtp16.uk.ibm.com Received: from e06smtp16.uk.ibm.com (HELO e06smtp16.uk.ibm.com) (195.75.94.112) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Tue, 18 Nov 2014 10:19:22 +0000 Received: from /spool/local by e06smtp16.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 18 Nov 2014 10:19:19 -0000 Received: from d06dlp01.portsmouth.uk.ibm.com (9.149.20.13) by e06smtp16.uk.ibm.com (192.168.101.146) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Tue, 18 Nov 2014 10:19:10 -0000 Received: from b06cxnps4074.portsmouth.uk.ibm.com (d06relay11.portsmouth.uk.ibm.com [9.149.109.196]) by d06dlp01.portsmouth.uk.ibm.com (Postfix) with ESMTP id DF68E17D805D for ; Tue, 18 Nov 2014 10:19:21 +0000 (GMT) Received: from d06av01.portsmouth.uk.ibm.com (d06av01.portsmouth.uk.ibm.com [9.149.37.212]) by b06cxnps4074.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id sAIAJ9Z626738710 for ; Tue, 18 Nov 2014 10:19:09 GMT Received: from d06av01.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av01.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id sAIAJ9b3026050 for ; Tue, 18 Nov 2014 03:19:09 -0700 Received: from bl3ahm9f.de.ibm.com (dyn-9-152-212-122.boeblingen.de.ibm.com [9.152.212.122]) by d06av01.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id sAIAJ8DH026028 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO) for ; Tue, 18 Nov 2014 03:19:08 -0700 Received: from dvogt by bl3ahm9f.de.ibm.com with local (Exim 4.76) (envelope-from ) id 1XqfsK-0007HM-30; Tue, 18 Nov 2014 11:19:08 +0100 Date: Tue, 18 Nov 2014 10:19:00 -0000 From: Dominik Vogt To: libffi-discuss@sourceware.org Subject: [PATCH 3/7] Merge of gcc patches Message-ID: <20141118101907.GD26714@linux.vnet.ibm.com> Reply-To: libffi-discuss@sourceware.org Mail-Followup-To: libffi-discuss@sourceware.org References: <20141118101743.GA26714@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="RYJh/3oyKhIjGcML" Content-Disposition: inline In-Reply-To: <20141118101743.GA26714@linux.vnet.ibm.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 14111810-0025-0000-0000-00000274DD67 X-IsSubscribed: yes X-SW-Source: 2014/txt/msg00227.txt.bz2 --RYJh/3oyKhIjGcML Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 64 Patch 3. Ciao Dominik ^_^ ^_^ -- Dominik Vogt IBM Germany --RYJh/3oyKhIjGcML Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=0003-ChangeLog Content-length: 122 ChangeLog 2014-04-22 Jakub Jelinek PR other/43620 * configure.ac (AM_INIT_AUTOMAKE): Add no-dist. --RYJh/3oyKhIjGcML Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-PR-other-43620.patch" Content-length: 677 >From ca8b3f328137c90995a11745b0e5ab423ed66899 Mon Sep 17 00:00:00 2001 From: jakub Date: Thu, 24 Apr 2014 21:17:32 +0000 Subject: [PATCH 3/7] PR other/43620 * configure.ac (AM_INIT_AUTOMAKE): Add no-dist. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 4a44bff..afad32c 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ esac AX_ENABLE_BUILDDIR -AM_INIT_AUTOMAKE +AM_INIT_AUTOMAKE([no-dist]) # The same as in boehm-gc and libstdc++. Have to borrow it from there. # We must force CC to /not/ be precious variables; otherwise -- 1.8.4.2 --RYJh/3oyKhIjGcML--