From patchwork Tue Oct 16 16:42:16 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Antonio Ospite X-Patchwork-Id: 10643867 X-Patchwork-Delegate: herbert@gondor.apana.org.au Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 2F8611508 for ; Tue, 16 Oct 2018 16:42:39 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1DD302A5B8 for ; Tue, 16 Oct 2018 16:42:39 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 121AF2A5D0; Tue, 16 Oct 2018 16:42:39 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id BEB512A5D9 for ; Tue, 16 Oct 2018 16:42:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727187AbeJQAdt (ORCPT ); Tue, 16 Oct 2018 20:33:49 -0400 Received: from mail.ao2.it ([92.243.12.208]:59679 "EHLO ao2.it" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727280AbeJQAdt (ORCPT ); Tue, 16 Oct 2018 20:33:49 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=ao2.it; s=20180927; h=Content-Transfer-Encoding:MIME-Version:References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From; bh=BIbSqgsNORrzXf0Ajmn3ScsdFAWStUvOscxOTpviaGg=; b=L0GYYJm33fiPDDY+Xs8mOtX4igyFkfoHHX+4sFy39jZiTPQ/C9h46C2UEFvpjY4SNZ1t5guUeUa3NiBw2U9FyCtSOuA4jBs+ahFsAYTPmIYYFz+Mx98gKpB7wlBMp1S5Pa7saraKKMTrVJWiZ9FkWjl3pUuAT+UA+rJnr0inj+uJZ3AxqB4uXDCjWWDr66KzNj0/mBUfktror2lxyUnoyPUpn8bSKoQVQzF1DaCtrrZPW99kkvCFDB1un2s6Z2AjJPw4esQiPMOZ46avhdfEV5BlaTUu823KAaw1TW3FHnOiPFOGwTUMDJr28n85KDhkXaaYU7x8CDr3PyHNCjMOFQ==; Received: from localhost ([::1] helo=jcn) by ao2.it with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1gCSQJ-0003wS-S5; Tue, 16 Oct 2018 18:42:23 +0200 Received: from ao2 by jcn with local (Exim 4.91) (envelope-from ) id 1gCSQS-0007fG-DX; Tue, 16 Oct 2018 18:42:32 +0200 From: Antonio Ospite To: dash@vger.kernel.org Cc: Antonio Ospite Subject: [PATCH 1/5] Update configure.ac with suggestions from autoupdate Date: Tue, 16 Oct 2018 18:42:16 +0200 Message-Id: <20181016164220.29413-2-ao2@ao2.it> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20181016164220.29413-1-ao2@ao2.it> References: <20181016164220.29413-1-ao2@ao2.it> MIME-Version: 1.0 X-Face: z*RaLf`X<@C75u6Ig9}{oW$H;1_\2t5)({*|jhM/Vb;]yA5\I~93>J<_`<4)A{':UrE Sender: dash-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: dash@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Apply the changes suggested by running autoupdate on the source repository: 1. Properly quote AC_INIT arguments. 2. Use AC_USE_SYSTEM_EXTENSIONS instead of AC_GNU_SOURCE. The former is a superset of the latter, and enables more options, see https://www.gnu.org/software/autoconf/manual/autoconf-2.60/html_node/Posix-Variants.html Signed-off-by: Antonio Ospite --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 4829288..594fb42 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT(dash, 0.5.10.2) +AC_INIT([dash],[0.5.10.2]) AM_INIT_AUTOMAKE([foreign subdir-objects]) AC_CONFIG_SRCDIR([src/main.c]) @@ -6,7 +6,7 @@ AC_CONFIG_HEADERS(config.h) dnl Checks for programs. AC_PROG_CC -AC_GNU_SOURCE +AC_USE_SYSTEM_EXTENSIONS AC_PROG_YACC AC_MSG_CHECKING([for build system compiler])