X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:content-type :content-id:content-transfer-encoding:mime-version; q=dns; s= default; b=yEIcwsQLI47sYyK3Rtr3LdVdUlL3s3UWnjoLYpNYJu6DvbdGcAKFv msWaCX9eKhz+dFF4sXzltwyOyLlgrxrRcNzvpw62gUZMFYOrU8dP84DtY/7OG6Rv RFfjiVXBXQ9kMxB69lpiCxQ2y1KgeJVcp2wIXjYTpwX1bAOKK9xg5c= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:content-type :content-id:content-transfer-encoding:mime-version; s=default; bh=L3OhDuzDRg9Z/wN/ZDs+soraMpo=; b=oB0ZgNC7+GenilzXwZ9QfXvYjCyg 5B31JWz0+LoPL9C5MMFwCFBLIc259rsiHxSaRTtFf6hHWAX3x/YA5s9d5j53saYd XfiZJI4hgepTFZTnt8aKIXHi1zoRyscabsOSdy6+FHtmZLXveqfiIFZJgKdj8YlF C//5jGtTgM9DQRA= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-6.9 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_2,GIT_PATCH_3,MIME_BASE64_BLANKS,RCVD_IN_DNSWL_NONE,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.1 spammy=HX-Languages-Length:743, cosmetic X-HELO: NAM05-BY2-obe.outbound.protection.outlook.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cornell.edu; s=selector1; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=SfQgUvcUX/tXjDrQ+grbQS5XAR7SQMJ/arEmq2i9wxo=; b=OJ2H3bJWjvyVc1b1rCAMH8F1QM5Ci72Fz1dxa3eghqiu71d4sjZxQaKWGPK769vTEM41S68fi0C7cU0PQMLDM7Ficn7gKZpMfHU89ROT17L5ZYSrsLMucFxH4+DzPDxBmAjKunHSSyl9QsSHRelAXEG4IF7G6RBhsX/D7gI0MFc= From: Ken Brown To: cygwin Subject: gpg2 version string Date: Fri, 10 May 2019 18:24:06 +0000 Message-ID: <6e69565b-cb73-4f93-fc83-c62d63c545f0@cornell.edu> user-agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.6.1 authentication-results: spf=none (sender IP is ) smtp.mailfrom=kbrown AT cornell DOT edu; x-ms-exchange-purlcount: 1 x-ms-oob-tlc-oobclassifiers: OLM:6430; received-spf: None (protection.outlook.com: cornell.edu does not designate permitted sender hosts) x-ms-exchange-senderadcheck: 1 Content-Type: text/plain; charset="utf-8" Content-ID: <6C6575E115A1224998508E7EF04FBF14 AT namprd04 DOT prod DOT outlook DOT com> MIME-Version: 1.0 X-MS-Exchange-CrossTenant-mailboxtype: HOSTED X-IsSubscribed: yes Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from base64 to 8bit by delorie.com id x4AIOqpu023433 This is mostly a cosmetic issue, but it has led to an emacs bug report: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=35629 The issue is that "gpg2 --version" has an extra "-unknown" in the output: $ gpg2 --version gpg (GnuPG) 2.2.15-unknown [...] I looked at the source, and it turns out that this is a consequence of running autoreconf. You can fix it by building without autoreconf or, alternatively, by applying the following patch: --- origsrc/gnupg-2.2.15/autogen.sh 2018-06-12 07:25:39.000000000 -0400 +++ src/gnupg-2.2.15/autogen.sh 2019-05-10 13:51:48.027196200 -0400 @@ -246,7 +246,7 @@ if [ "$myhost" = "find-version" ]; then else ingit=no beta=yes - tmp="-unknown" + tmp="" rev="0000000" rvd="0" fi Ken -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple