[libconfig-autoconf-perl] 13/18: Imported Upstream version 0.309
Peter Pentchev
roam at ringlet.net
Mon Feb 16 12:43:26 UTC 2015
This is an automated email from the git hooks/post-receive script.
roam-guest pushed a commit to branch master
in repository libconfig-autoconf-perl.
commit 09e65102a3af02e011845954cbc4c2a90d01dab4
Author: Peter Pentchev <roam at ringlet.net>
Date: Fri Feb 13 12:55:37 2015 +0200
Imported Upstream version 0.309
---
Changes | 8 +++++---
META.json | 2 +-
META.yml | 2 +-
lib/Config/AutoConf.pm | 13 ++-----------
4 files changed, 9 insertions(+), 16 deletions(-)
diff --git a/Changes b/Changes
index 57eb0fd..d8a5278 100644
--- a/Changes
+++ b/Changes
@@ -1,11 +1,13 @@
Revision history for Config-AutoConf
+0.309 2014-12-31
+ - Remove the -arch removal for Mac OS X.
+
0.308 2014-12-26
- - deal with "no C compiler available" properly
- (see RT#101121)
+ - deal with "no C compiler available" properly (see RT#101121)
0.307 2014-12-14
- - no Changes since 0.306_002
+ - no Changes since 0.306_002
0.306_002 2014-12-08
- fix perl_api_link test for broken environments of some windows
diff --git a/META.json b/META.json
index bbe366a..993cea8 100644
--- a/META.json
+++ b/META.json
@@ -83,5 +83,5 @@
"web" : "https://github.com/ambs/Config-AutoConf"
}
},
- "version" : "0.308"
+ "version" : "0.309"
}
diff --git a/META.yml b/META.yml
index 2780e58..bbc24c5 100644
--- a/META.yml
+++ b/META.yml
@@ -41,4 +41,4 @@ resources:
homepage: https://metacpan.org/release/Config-AutoConf
license: http://dev.perl.org/licenses/
repository: https://github.com/ambs/Config-AutoConf
-version: '0.308'
+version: '0.309'
diff --git a/lib/Config/AutoConf.pm b/lib/Config/AutoConf.pm
index 0504c28..6445926 100644
--- a/lib/Config/AutoConf.pm
+++ b/lib/Config/AutoConf.pm
@@ -92,7 +92,7 @@ Config::AutoConf - A module to implement some of AutoConf macros in pure perl.
=cut
-our $VERSION = '0.308';
+our $VERSION = '0.309';
$VERSION = eval $VERSION;
=head1 ABSTRACT
@@ -3328,16 +3328,7 @@ sub _get_builder
ref $self->{lang_supported}->{ $self->{lang} } eq "CODE" and $self->{lang_supported}->{ $self->{lang} }->($self);
defined( $self->{lang_supported}->{ $self->{lang} } ) or croak( "Unsupported compile language \"" . $self->{lang} . "\"" );
- my $builder = $self->{lang_supported}->{ $self->{lang} }->new();
-
- ## XXX - Temporarily. Will try to send upstream
- if ( $self->{lang} eq "C" )
- {
- $builder->{config}{ccflags} =~ s/-arch \S+//g;
- $builder->{config}{lddlflags} =~ s/-arch \S+//g;
- $builder->{config}{ldflags} =~ s/-arch \S+//g;
- }
- $builder;
+ $self->{lang_supported}->{ $self->{lang} }->new();
}
sub _set_language
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libconfig-autoconf-perl.git
More information about the Pkg-perl-cvs-commits
mailing list