From patchwork Thu Jan 19 12:13:14 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Franz Sirl X-Patchwork-Id: 717039 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]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3v42n064Nlz9t1H for ; Thu, 19 Jan 2017 23:13:40 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="N5gqREFy"; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :subject:to:references:message-id:date:mime-version:in-reply-to :content-type; q=dns; s=default; b=TDOzNzhAsPSegbxCbwNn5dMElCFQe ftUWeG1TImYxEc0k35rAPvoB7CBavL2az6onTvrCP9oQa4gtVCLjZO0LVrZ2dlJo SFQeh/zXuv7liDcmpb/lJ83e7LYei2tDV7RG85a9U8b+DtH3VaS7WXErp++tQhal fMsjTLX2KhMJK4= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :subject:to:references:message-id:date:mime-version:in-reply-to :content-type; s=default; bh=IrRu7RA1Fp/a9eXDdkWsrWy1Sa8=; b=N5g qREFyaOX0E+eJXtqUKmD+mELcfzCn23dkDdZrP8AP5m/PraE4Twjz2BjamYcDaN6 Lw+Qj2sihPntJw/de4Z8PNHmRMAdmsvc6l2uRIwRKY/CDOq/zZvJJRPjw1yddNiU /7YMd6jWpDb+yYwyJmqcizqzaQq0CJ/aj9Q8nvvo= Received: (qmail 94419 invoked by alias); 19 Jan 2017 12:13:29 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 94399 invoked by uid 89); 19 Jan 2017 12:13:28 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.9 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 spammy=sk:with-gc, sk:withgc, H*r:qmail-ldap-1.03, H*r:envelope-sender X-HELO: smtp1.lauterbach.com Received: from smtp1.lauterbach.com (HELO smtp1.lauterbach.com) (62.154.241.196) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 19 Jan 2017 12:13:18 +0000 Received: (qmail 25141 invoked by uid 484); 19 Jan 2017 12:11:17 -0000 X-Qmail-Scanner-Diagnostics: from 10.2.11.10 by smtp1.lauterbach.com (envelope-from , uid 484) with qmail-scanner-2.11 (mhr: 1.0. clamdscan: 0.99/21437. spamassassin: 3.4.0. Clear:RC:1(10.2.11.10):. Processed in 0.316597 secs); 19 Jan 2017 12:11:17 -0000 Received: from unknown (HELO [10.2.11.10]) (Authenticated_SSL:fsirl@[10.2.11.10]) (envelope-sender ) by smtp1.lauterbach.com (qmail-ldap-1.03) with ECDHE-RSA-AES256-GCM-SHA384 encrypted SMTP for ; 19 Jan 2017 12:11:16 -0000 From: Franz Sirl Subject: Re: [PATCH] Introduce --with-gcc-major-version-only configure option (take 2) To: Jakub Jelinek , gcc-patches@gcc.gnu.org References: <20170106124826.GJ21933@tucnak> <20170109204316.GR21933@tucnak> <2b92bcd4-bedc-a675-fb6f-89e4db07a526@ubuntu.com> <20170110065636.GU21933@tucnak> <20170112201623.GC21933@tucnak> Message-ID: Date: Thu, 19 Jan 2017 13:13:14 +0100 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:51.0) Gecko/20100101 Thunderbird/51.0 MIME-Version: 1.0 In-Reply-To: <20170112201623.GC21933@tucnak> X-IsSubscribed: yes Am 2017-01-12 um 21:16 schrieb Jakub Jelinek: > libmpx/ > * configure.ac: Add GCC_BASE_VER. > * Makefile.am (gcc_version): Use @get_gcc_base_ver@ instead of cat to > get version from BASE-VER file. > * configure: Regenerated. Hi, it seems libmpx/configure.ac is missing the acx.m4 include, because there is now a bare GCC_BASE_VER in the regenerated libmpx/configure. The attached patch seem to fix it, but I'm not good with autoconf. Franz Index: libmpx/configure.ac =================================================================== --- libmpx/configure.ac (revision 244613) +++ libmpx/configure.ac (working copy) @@ -1,6 +1,8 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. +sinclude(../config/acx.m4) + AC_PREREQ([2.64]) AC_INIT(package-unused, version-unused, libmpx)