From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 79631 invoked by alias); 14 Nov 2019 00:33:27 -0000 Mailing-List: contact elfutils-devel-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Post: List-Help: List-Subscribe: Sender: elfutils-devel-owner@sourceware.org Received: (qmail 79614 invoked by uid 89); 14 Nov 2019 00:33:27 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.100.3 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.5 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.3.1 spammy= X-Spam-Status: No, score=-3.5 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on sourceware.org X-Spam-Level: X-HELO: us-smtp-1.mimecast.com Received: from us-smtp-delivery-1.mimecast.com (HELO us-smtp-1.mimecast.com) (207.211.31.120) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 14 Nov 2019 00:33:26 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1573691604; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=mE/b4gBEfWfBpn/DEfDhbcaFP7Trxhjf/ynV1Dw0KzQ=; b=BkoOYTaojvZ323HYK+CxK75Qkw/2IneUyASLjtRRODGBU1aNpkLjzpKzFmrzDzfIdPAVZG OKtDbbCCYtHF+4PN0S1pDiuVmJxvk/UZhnEB10JCjcYNxyjBVF4u/ZdBkLJ/A0/9GoGnw0 yMn02dgn5FYEVU8MOB0e++JQBaglc44= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-61-7WiBHb_RPWa9YmCX6HOZKQ-1; Wed, 13 Nov 2019 19:33:23 -0500 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 9CD71107ACC5; Thu, 14 Nov 2019 00:33:22 +0000 (UTC) Received: from redhat.com (ovpn-116-53.phx2.redhat.com [10.3.116.53]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 7BCC35DF2B; Thu, 14 Nov 2019 00:33:22 +0000 (UTC) Received: from fche by redhat.com with local (Exim 4.92) (envelope-from ) id 1iV34a-00009b-PI; Wed, 13 Nov 2019 19:33:20 -0500 Date: Thu, 14 Nov 2019 00:33:00 -0000 From: "Frank Ch. Eigler" To: Mark Wielaard Cc: elfutils-devel@sourceware.org, amerey@redhat.com Subject: Re: patch 1/2 debuginfod client Message-ID: <20191114003320.GB31583@redhat.com> References: <20191028190438.GC14349@redhat.com> <20191028190602.GD14349@redhat.com> <0bdee1935e9cce5e7ae6804d6d6335cf8ab97b7b.camel@klomp.org> <20191112151443.GA12710@redhat.com> MIME-Version: 1.0 In-Reply-To: User-Agent: Mutt/1.12.0 (2019-05-25) X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-MC-Unique: 7WiBHb_RPWa9YmCX6HOZKQ-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=WINDOWS-1252 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-IsSubscribed: yes X-SW-Source: 2019-q4/txt/msg00130.txt.bz2 Hi - > > It'd be fractions of a second per configure run ... worth worrying > > about? >=20 > Probably not, but if it is easy to hide after the check, why not do it? > Don't if it requires nasty trickery though. OK. > > > > +PKG_PROG_PKG_CONFIG > > > > +AC_ARG_ENABLE([debuginfod], AC_HELP_STRING([--enable-debuginfod], = [Build debuginfo server and client solib])) > > > > +AS_IF([test "x$enable_debuginfod" =3D "xyes"], [ > [...] >=20 > I think it is better to enable it by default and error out when the > dependencies aren't found. Just add an explicit notice that people can > disable it when they don't want it. > AC_MSG_NOTICE([checking debuginfod dependencies, disable to skip]) > or something like that.=20 OK .... well wait, that'll slow everything down by default after all. :-) - FChE