X-Recipient: archive-cygwin@delorie.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:from:to:references:in-reply-to
	:subject:date:mime-version:content-type
	:content-transfer-encoding; q=dns; s=default; b=ZLaaRtovWUIUBTRc
	VVG8XOTnX3bt4ETMHJbxSiNelFNkibiPCVUgK1tvHdFvesjjE+tRaJ9a3/w7LUzS
	Oxz0rLPEO+4FMjDlbbZ4m0PSj4fGnO4V+u0wh8nw3ezDHhEUKrQ4TbMAqA9nvW9Y
	hwyboOxtH7UZny71M61dOQR0zuo=
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:from:to:references:in-reply-to
	:subject:date:mime-version:content-type
	:content-transfer-encoding; s=default; bh=5mQn5FP6AWmwvxHsXOfi7J
	AcB8A=; b=sy90d9awt6TNQ3xmcr0zLPguelY6FM1HTinbDGKnsYqBWHV4RGRr0l
	b/p9gTKFbgXycOkAiqi0XaHxTAC0M9EQVvFUaJ2mF1XTBGiNAQhRUs/oA0F87JFn
	z5LrY9RGwCKtGPNvRzM+Tok2aTG89U6Za2UG4bUUBVM+C5lZtS43g=
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.4 required=5.0 tests=AWL,BAYES_50,RCVD_IN_DNSWL_LOW,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2
X-HELO: mail108.syd.optusnet.com.au
Message-ID: <C65B48DC1CA747939AD7B7CBF38B1B79@OwnerPC311012>
From: <sisyphus1@optusnet.com.au>
To: "Gilberto Perez" <gilberto.limon.perez@gmail.com>, <cygwin@cygwin.com>
References: <CAJtcZeDtPug2J4CCO+N=piJXgNYV+_spdKoHZ1Pib1sGo39Srg@mail.gmail.com>
In-Reply-To: <CAJtcZeDtPug2J4CCO+N=piJXgNYV+_spdKoHZ1Pib1sGo39Srg@mail.gmail.com>
Subject: Re: Issue with Autotools and Perl on Windows 10
Date: Tue, 22 Sep 2015 16:24:55 +1000
MIME-Version: 1.0
Content-Type: text/plain;	format=flowed;	charset="UTF-8";	reply-type=original
Content-Transfer-Encoding: 7bit
X-Optus-CM-Score: 0
X-Optus-CM-Analysis: v=2.1 cv=W4DFLkik c=1 sm=1 tr=0	a=8e8rgZJuizJfF74+JHJpGg==:117 a=8e8rgZJuizJfF74+JHJpGg==:17	a=PO7r1zJSAAAA:8 a=IkcTkHD0fZMA:10 a=w_pzkKWiAAAA:8	a=msPYU5vEPaCe2X9ngVEA:9 a=QEXdDO2ut3YA:10
X-IsSubscribed: yes

-----Original Message----- 
From: Gilberto Perez
Sent: Tuesday, September 22, 2015 1:08 PM
To: cygwin@cygwin.com
Subject: Issue with Autotools and Perl on Windows 10

> I have never had this problem until I upgraded to Windows 10. When
> attempting to use 'autoreconf', I get the following messages:
>
> main::scan_file() called too early to check prototype at
> /usr/bin/aclocal-1.11 line 644.
> Unescaped left brace in regex is deprecated, passed through in regex;
> marked by <-- HERE in m/\${ <-- HERE ([^ \t=:+{}]+)}/ at
> /usr/bin/automake-1.11 line 4159.
>
> I'm not sure how important they are, but it might be the cause of some 
> difficulties I've been having.

These warnings emanate from perl.
Neither will be related to any problems you are experiencing, AFAICT.

You can eliminate the second one by inserting a backslash immediately prior 
to the offending "{".

You can eliminate the first by changing the "scan_file" at line 644 with 
"&scan_file" - though that works by turning off prototyping, which is not 
the fix that the autotools developers went with.
Looking at aclocal-1.15, I see that they've chosen to leave prototyping 
enabled, and instead they've declared the function (near the beginning of 
that file) early enough for the parser to find it (before it gets called).

Could your problems be that installing Windows 10 has somehow downgraded 
your autotools to 1.11 ?

Cheers,
Rob 


--
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

