From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id DF19B6DE1410 for ; Wed, 1 May 2019 22:17:14 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: -0.133 X-Spam-Level: X-Spam-Status: No, score=-0.133 tagged_above=-999 required=5 tests=[AWL=0.068, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_NONE=-0.0001, SPF_PASS=-0.001] autolearn=disabled Received: from arlo.cworth.org ([127.0.0.1]) by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Ml5UbOZ4RTlA for ; Wed, 1 May 2019 22:17:14 -0700 (PDT) Received: from che.mayfirst.org (che.mayfirst.org [162.247.75.118]) by arlo.cworth.org (Postfix) with ESMTPS id B91896DE1326 for ; Wed, 1 May 2019 22:17:11 -0700 (PDT) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/simple; d=fifthhorseman.net; i=@fifthhorseman.net; q=dns/txt; s=2019; t=1556774230; h=from : to : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : from; bh=c5Iyrd+SNK0V/02JMDUxqGqTxKRzuJ/fRRpxEL6qKFU=; b=zrxHvkUaxaKi5alBjaCkbUHMEhyAZ3BjgFQfaKl1zoB1Kb7YGrW3i+/l qBsF5rUsRLcR28wOmA8f5RZiR/KwDQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=fifthhorseman.net; i=@fifthhorseman.net; q=dns/txt; s=2019rsa; t=1556774229; h=from : to : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : from; bh=c5Iyrd+SNK0V/02JMDUxqGqTxKRzuJ/fRRpxEL6qKFU=; b=gBYP22Tp+Bbx0uhWpaOqVpu9s7TOV4Gd3vSqqNFEtKSr+st/xWsSXXRE ljJdogrPrk0/4NagqVyeWqVpKrxblbmO45Gka3m4Ogu+Cm61fT6w9oRKXV BLN28mhD56ANa58wa0ZSmW6vPjb4HDGOafv+W98L632X9t5uJIEkLIQhaT ksUesPOD5xytchnMgi/GARp1NU4vvLEWS8PY/uTr255gJ7deF3VZad81gI 5dkII96sPAQy0b9bO95xVMoh3ZrDFTid0wjWKNt37/ObLdcbbh5lWDS34H ADffSch7lgMJJCLO9ZHNRwnMMwIeXnjINrs9dpaEqD0lyVSKzT0+1g== Received: from fifthhorseman.net (ool-6c3a0662.static.optonline.net [108.58.6.98]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by che.mayfirst.org (Postfix) with ESMTPSA id 84686F9A5 for ; Thu, 2 May 2019 01:17:09 -0400 (EDT) Received: by fifthhorseman.net (Postfix, from userid 1000) id 8BD5720EB5; Thu, 2 May 2019 01:17:04 -0400 (EDT) From: Daniel Kahn Gillmor To: Notmuch Mail Subject: [PATCH 15/16] gmime-cleanup: use GMIME_MINVER instead of GMIME3_MINVER Date: Thu, 2 May 2019 01:16:52 -0400 Message-Id: <20190502051653.8502-16-dkg@fifthhorseman.net> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190502051653.8502-1-dkg@fifthhorseman.net> References: <20190501104643.5836-1-david@tethera.net> <20190502051653.8502-1-dkg@fifthhorseman.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 May 2019 05:17:15 -0000 This looks cleaner and simpler, but has no functional change. Signed-off-by: Daniel Kahn Gillmor --- configure | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index 0b65630e..9140026a 100755 --- a/configure +++ b/configure @@ -489,11 +489,11 @@ EOF rm -rf test.db _default_backend _default_backend.cc fi -GMIME3_MINVER=3.0.3 +GMIME_MINVER=3.0.3 printf "Checking for GMime development files... " -if pkg-config --exists "gmime-3.0 > $GMIME3_MINVER"; then - printf "Yes (3.0).\n" +if pkg-config --exists "gmime-3.0 > $GMIME_MINVER"; then + printf "Yes.\n" have_gmime=1 gmime_cflags=$(pkg-config --cflags gmime-3.0) gmime_ldflags=$(pkg-config --libs gmime-3.0) @@ -771,7 +771,7 @@ EOF echo fi if [ $have_gmime -eq 0 ]; then - echo " GMime 3.0 library >= $GMIME3_MINVER" + echo " GMime library >= $GMIME_MINVER" echo " (including development files such as headers)" echo " https://github.com/jstedfast/gmime/" echo -- 2.20.1