From patchwork Thu Oct 10 16:42:53 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fangrui Song X-Patchwork-Id: 11183935 X-Patchwork-Delegate: herbert@gondor.apana.org.au Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id A091317D4 for ; Thu, 10 Oct 2019 16:42:59 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7FAEA205C9 for ; Thu, 10 Oct 2019 16:42:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726007AbfJJQm6 (ORCPT ); Thu, 10 Oct 2019 12:42:58 -0400 Received: from mail-pf1-f182.google.com ([209.85.210.182]:39651 "EHLO mail-pf1-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725901AbfJJQm6 (ORCPT ); Thu, 10 Oct 2019 12:42:58 -0400 Received: by mail-pf1-f182.google.com with SMTP id v4so4261839pff.6 for ; Thu, 10 Oct 2019 09:42:57 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:mime-version :content-disposition:user-agent; bh=J7yCWBwJy7yLombrFo7lJQD9QCPvRCBsC0KG5PpK4QY=; b=Niz9MAW88j9+s5eApq1L3yHEKi65ZbyGMKoggAtJl2RtbEFKFrwsJK1o+bCI5yVP9v YvJoNmk1ZmpuuTPXb+FIROIDR2WYyjmhZEXB8UQNRRRC0SfhlTplEdbkOkOwnoTiHet7 5tMyWghQpsMdteSxGxPa2Yv59IkwneOFrnwBqx66MdQZlZ6EExEE9Qs60KS1TyrNtze+ nQSSAOOmZkMAXhQmjLqvR05ZXBDfJ4XCZPtH66rHWzphXtdOrbf9NNDo0oN6mBOEuiRS 64Jpi9NXjD0mPxSKQVZu7VgEMpZbjxxBdiOCPckPje1xEzmlo7UWz+VBABSouVhlP/K/ Fnqw== X-Gm-Message-State: APjAAAXA6i/uyoFkN3HgduVC7u/xZ4LwhbCFzSGBIb1L67XVV8AvZa0A GRk5NWM5yw/INfQxdIgS2s2xI+C6q0E= X-Google-Smtp-Source: APXvYqzku7N9KAXMAcZ9GEQaL1Y948u0X1TBeTOpzJZQ1NH6R5+auQhZgxK9Ahoa/soVlHL58vyTpQ== X-Received: by 2002:a17:90a:d783:: with SMTP id z3mr12548524pju.142.1570725776964; Thu, 10 Oct 2019 09:42:56 -0700 (PDT) Received: from localhost ([100.103.206.61]) by smtp.gmail.com with ESMTPSA id w189sm7072668pfw.101.2019.10.10.09.42.55 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 10 Oct 2019 09:42:56 -0700 (PDT) Date: Thu, 10 Oct 2019 16:42:53 +0000 From: Fangrui Song To: dash@vger.kernel.org Subject: [PATCH] build: delete AC_PROG_YACC Message-ID: <20191010164253.efork5stbhquef5m@google.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: NeoMutt/20180223-112-0c5bf3 Sender: dash-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: dash@vger.kernel.org src/arith.y was deleted by commit f6e3b2 [ARITH] Add assignment and intmax_t support. We can delete AC_PROG_YACC to get rid of the build-time dependency. From 1d173d31dcc971f3dc6e233d04498adc41b7326c Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Thu, 10 Oct 2019 16:30:42 +0000 Subject: [PATCH] build: delete AC_PROG_YACC To: dash@vger.kernel.org --- configure.ac | 1 - 1 file changed, 1 deletion(-) diff --git a/configure.ac b/configure.ac index 036730d..5dab5aa 100644 --- a/configure.ac +++ b/configure.ac @@ -9,7 +9,6 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)]) dnl Checks for programs. AC_PROG_CC AC_USE_SYSTEM_EXTENSIONS -AC_PROG_YACC AC_MSG_CHECKING([for build system compiler]) if test "$cross_compiling" = yes; then -- 2.23.0