From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id yOKgGFLHm2HuAQAAWB0awg (envelope-from ) for ; Mon, 22 Nov 2021 11:37:38 -0500 Received: by simark.ca (Postfix, from userid 112) id 628C41F0CE; Mon, 22 Nov 2021 11:37:38 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-3.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 9D3381EDF0 for ; Mon, 22 Nov 2021 11:37:37 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 39D123858010 for ; Mon, 22 Nov 2021 16:37:37 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 39D123858010 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1637599057; bh=M/+q7wUfTMO536EhZ3JRGU52tyn/jZZtnnxM2QnL9wU=; h=Date:To:Subject:In-Reply-To:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=BuzZuaQsjm1V+Vo01mIlupeEA91+BLwQY3Do5lXu/iBoqNeykGB8qyld4PylTcorH MvxjCIGHkRYkY6jLfIcXVO2A2KJATUd/6S8+QUHxmCTmx/Vj5XIBQYhPUCZECklkOD j0TeidXyqeFiRHYPJt6N4r4/MMXuVOoBps9pKLPs= Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by sourceware.org (Postfix) with ESMTPS id 8784C3858406 for ; Mon, 22 Nov 2021 16:37:15 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 8784C3858406 Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-527-vivIzWdnNwSC-8aH9HvOJQ-1; Mon, 22 Nov 2021 11:37:05 -0500 X-MC-Unique: vivIzWdnNwSC-8aH9HvOJQ-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 6B9AF87D541; Mon, 22 Nov 2021 16:37:04 +0000 (UTC) Received: from f35-m3 (ovpn-112-51.phx2.redhat.com [10.3.112.51]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 3B93B60843; Mon, 22 Nov 2021 16:37:04 +0000 (UTC) Date: Mon, 22 Nov 2021 09:37:03 -0700 To: Alexandra =?ISO-8859-1?Q?H=E1jkov=E1?= via Gdb-patches Subject: Re: [PATCH v2] configure.ac: Check for the readline.h explicitly Message-ID: <20211122093703.63346654@f35-m3> In-Reply-To: <20211120183738.690960-1-ahajkova@redhat.com> References: <20211118121440.558038-1-ahajkova@redhat.com> <20211120183738.690960-1-ahajkova@redhat.com> Organization: Red Hat MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Kevin Buettner via Gdb-patches Reply-To: Kevin Buettner Cc: Alexandra =?ISO-8859-1?Q?H=E1jkov=E1?= Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" On Sat, 20 Nov 2021 19:37:38 +0100 Alexandra H=C3=A1jkov=C3=A1 wrote: > From: Alexandra H=C3=A1jkov=C3=A1 >=20 > When readline development package is missing make fails with > "configure: error: system readline is not new enough" which > might be confusing. This patch checks for the readline.h explicitly > and makes make to warn about the missing package. > --- > v2: use proper version of autoconf for regenerating configure LGTM. Kevin