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 2723C6DE0EB0 for ; Wed, 18 Mar 2020 01:02:55 -0700 (PDT) Authentication-Results: arlo.cworth.org; dkim=permerror (0-bit key) header.d=fifthhorseman.net header.i=@fifthhorseman.net header.b="xfw6Q4s3"; dkim=pass (2048-bit key; unprotected) header.d=fifthhorseman.net header.i=@fifthhorseman.net header.b="RyxU3DS8"; dkim-atps=neutral X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: -0.806 X-Spam-Level: X-Spam-Status: No, score=-0.806 tagged_above=-999 required=5 tests=[AWL=0.449, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_BL_SPAMCOP_NET=1.246, RCVD_IN_DNSWL_MED=-2.3, 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 1BE3h-o5lZEe for ; Wed, 18 Mar 2020 01:02:54 -0700 (PDT) Received: from che.mayfirst.org (che.mayfirst.org [162.247.75.118]) by arlo.cworth.org (Postfix) with ESMTPS id 838B06DE0EA6 for ; Wed, 18 Mar 2020 01:02:54 -0700 (PDT) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/simple; d=fifthhorseman.net; i=@fifthhorseman.net; q=dns/txt; s=2019; t=1584518573; h=from : to : subject : date : message-id : mime-version : content-transfer-encoding : from; bh=tSJTzZvwClVl66rLb48QlaYsgdc0eYn/yzX+ymbhaHw=; b=xfw6Q4s3YQkWTW+8lBwtIcWMYUOv4CYHV8q6SWLUYtMSuLq/bQUzt2yeSIAjxI4nO3VY9 9ww2KknW9MRsPnFDQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=fifthhorseman.net; i=@fifthhorseman.net; q=dns/txt; s=2019rsa; t=1584518573; h=from : to : subject : date : message-id : mime-version : content-transfer-encoding : from; bh=tSJTzZvwClVl66rLb48QlaYsgdc0eYn/yzX+ymbhaHw=; b=RyxU3DS8bd8wjlDPcrZiGr/hO7ecxqPGz2r/i3t1NghEiwOZT6Sgeavf4yK4zZ6LASmnF nBCo37GqPvtrttiLjgSWUY2TOaef44Z1T+GDyr5EgFNwkRk/lDn4QAqU5xCjQWYEZIP7fcX SHcRwZ5w0rxO4jZMVodFOHUH+FCqGRXh8WyNBw9K+92i6J4EyNq6bndvshY2tzGcsWs0c7S Up9BizWB19mqWhz0DyI6wG91cmowLDm59jnFcJZgIPzHd+n4ALwegItUP0/R49zI0oEk72Y ckzcGD9CY3ZTAgylax2f83aC+Fz2jQnEmQrqng4lR34wfkV/ZinuqZtHSa4Q== Received: from fifthhorseman.net (lair.fifthhorseman.net [108.58.6.98]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by che.mayfirst.org (Postfix) with ESMTPSA id BF1E7F9A5 for ; Wed, 18 Mar 2020 04:02:53 -0400 (EDT) Received: by fifthhorseman.net (Postfix, from userid 1000) id 598A72028A; Wed, 18 Mar 2020 04:02:50 -0400 (EDT) From: Daniel Kahn Gillmor To: Notmuch Mail Subject: [PATCH] configure: Check GMime version properly Date: Wed, 18 Mar 2020 04:02:50 -0400 Message-Id: <20200318080250.367094-1-dkg@fifthhorseman.net> X-Mailer: git-send-email 2.25.1 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: Wed, 18 Mar 2020 08:02:55 -0000 Signed-off-by: Daniel Kahn Gillmor --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index c16d18dc..70031d14 100755 --- a/configure +++ b/configure @@ -513,7 +513,7 @@ fi GMIME_MINVER=3.0.3 printf "Checking for GMime development files... " -if pkg-config --exists "gmime-3.0 > $GMIME_MINVER"; then +if pkg-config --exists "gmime-3.0 >= $GMIME_MINVER"; then printf "Yes.\n" have_gmime=1 gmime_cflags=$(pkg-config --cflags gmime-3.0) -- 2.25.1