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:message-id:date:from:mime-version:to:subject :content-type; q=dns; s=default; b=lrajK/IC5UGqlNewC67+YV90IOjJ0 nJmbD4/SJMHJksoIj1UJrxM4OYXinMBeMPnYHGIkdYU4XJD/nUCcBfhgqClU5sva SfmhgaBzIvKweOWH4QT2eakHrQTNISwpCrQPFa2EFoJhQ9lqapyZSB5WhQEOHeBO 8fmTqz74pluy2s= 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:message-id:date:from:mime-version:to:subject :content-type; s=default; bh=VXUKhRGdXHZZrrIK6ht2TQS+Zcw=; b=rh5 9obZLXwFxclnOR6FoC7jaS4wm8o4J+R9q6quqsMTlcnCte0o8ENXA/KDlCX5aMww imeuQjN1KWN6PYDijUH7TDJYHkZB9I82iM7OU/NlC4K6iLlhdsBAj/ID9HK6PL6f vrglRIEnXyi2nqw0565yXwv5Gl0sYV3GWMTRGsHs= 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 X-Spam-SWARE-Status: No, score=-3.1 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,RCVD_IN_HOSTKARMA_NO,RCVD_IN_HOSTKARMA_YE,RP_MATCHES_RCVD,TW_RV,TW_YG,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 Message-ID: <51679DBD.6060404@t-online.de> Date: Fri, 12 Apr 2013 07:38:05 +0200 From: Christian Franke User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:19.0) Gecko/20100101 Firefox/19.0 SeaMonkey/2.16.2 MIME-Version: 1.0 To: cygwin AT cygwin DOT com Subject: [PATCH 64bit] automake 1.13.1-1: Fix config.guess result Content-Type: multipart/mixed; boundary="------------040609060400030907070703" X-Virus-Found: No --------------040609060400030907070703 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Recent config.guess still detects 64bit Cygwin as x86_64-unknown-cygwin. This should probably be changed (upstream) to be consistent with i686-pc-cygwin. $ uname -srvmo CYGWIN_NT-6.1 1.7.18(0.263/5/3) 2013-04-10 14:35 x86_64 Cygwin $ cygcheck -f /usr/share/automake-1.13/config.guess automake1.13-1.13.1-1 $ /usr/share/automake-1.13/config.guess x86_64-unknown-cygwin Christian --------------040609060400030907070703 Content-Type: text/x-diff; name="config.guess.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="config.guess.patch" --- config.guess.orig 2013-03-11 01:18:17.000000000 +0100 +++ config.guess 2013-04-12 07:19:56.583395800 +0200 @@ -847,7 +847,7 @@ echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) - echo x86_64-unknown-cygwin + echo x86_64-pc-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin --------------040609060400030907070703 Content-Type: text/plain; charset=us-ascii -- 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 --------------040609060400030907070703--