Front page | perl.perl5.porters |
Postings from June 2009
Re: Configure glitch?
Thread Previous
|
Thread Next
From:
Andy Dougherty
Date:
June 30, 2009 14:12
Subject:
Re: Configure glitch?
Message ID:
alpine.DEB.2.00.0906301710170.28205@fractal.phys.lafayette.edu
On Tue, 30 Jun 2009, Andy Dougherty wrote:
> On Tue, 30 Jun 2009, Jerry D. Hedden wrote:
>
> > After today's updates to blead, I'm seeing the following during Configure:
> >
> > <utime.h> found.
> >
> > Looking for extensions...
> > Win32CORE.c <<== This is new, but
> > looks like a 'bug'
> > You have requested that certain extensions be ignored...
> > Keeping extension B.
> > Keeping extension Compress/Raw/Bzip2.
> > Keeping extension Compress/Raw/Zlib.
> > Keeping extension Cwd.
>
> That's mine. I'll check it out.
Fixed now in:
commit 83e68653e71d044dd7a9b830eeb68590ffba020a
Author: Andy Dougherty <doughera@lafayette.edu>
Date: Tue Jun 30 17:09:24 2009 -0400
Configure: avoid leaking Win32CORE.c into output of extension probing.
Thanks for catching that.
The patch was actually trivial:
--- perl-andy/Configure 2009-06-30 16:55:27.000000000 -0400
+++ perl-git/Configure 2009-06-30 16:46:45.000000000 -0400
@@ -21655,7 +21655,7 @@
$ls -1 $xxx > $$.tmp;
if $contains "\.xs$" $$.tmp > /dev/null 2>&1; then
known_extensions="$known_extensions $this_ext";
- elif $contains "\.c$" $$.tmp > /dev/null 2>&1; then
+ elif $contains "\.c$" $$.tmp; then
known_extensions="$known_extensions $this_ext";
elif $test -d $xxx; then
nonxs_extensions="$nonxs_extensions $this_ext";
--
Andy Dougherty doughera@lafayette.edu
Thread Previous
|
Thread Next