r18565 - in /branches/upstream/libalien-wxwidgets-perl/current: Changes META.yml Makefile.PL inc/My/Build/Any_wx_config.pm inc/My/Build/MacOSX_wx_config.pm inc/My/Build/Win32.pm lib/Alien/wxWidgets.pm lib/Alien/wxWidgets/Utility.pm

roberto at users.alioth.debian.org roberto at users.alioth.debian.org
Sun Apr 13 13:12:54 UTC 2008


Author: roberto
Date: Sun Apr 13 13:12:53 2008
New Revision: 18565

URL: http://svn.debian.org/wsvn/?sc=1&rev=18565
Log:
[svn-upgrade] Integrating new upstream version, libalien-wxwidgets-perl (0.34)

Modified:
    branches/upstream/libalien-wxwidgets-perl/current/Changes
    branches/upstream/libalien-wxwidgets-perl/current/META.yml
    branches/upstream/libalien-wxwidgets-perl/current/Makefile.PL
    branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Any_wx_config.pm
    branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/MacOSX_wx_config.pm
    branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Win32.pm
    branches/upstream/libalien-wxwidgets-perl/current/lib/Alien/wxWidgets.pm
    branches/upstream/libalien-wxwidgets-perl/current/lib/Alien/wxWidgets/Utility.pm

Modified: branches/upstream/libalien-wxwidgets-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libalien-wxwidgets-perl/current/Changes?rev=18565&op=diff
==============================================================================
--- branches/upstream/libalien-wxwidgets-perl/current/Changes (original)
+++ branches/upstream/libalien-wxwidgets-perl/current/Changes Sun Apr 13 13:12:53 2008
@@ -1,4 +1,7 @@
 Revision history for Perl extension Alien::wxWidgets.
+
+0.34  Sun Apr 13 12:40:08 CEST 2008
+	- Correctly detect GCC 4.3. (patch by Roberto C. Sánchez)
 
 0.33  Sat Jan 19 17:35:57 CET 2008
 	- Patch and build wxWidgets 2.8.7.

Modified: branches/upstream/libalien-wxwidgets-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libalien-wxwidgets-perl/current/META.yml?rev=18565&op=diff
==============================================================================
--- branches/upstream/libalien-wxwidgets-perl/current/META.yml (original)
+++ branches/upstream/libalien-wxwidgets-perl/current/META.yml Sun Apr 13 13:12:53 2008
@@ -1,6 +1,6 @@
 ---
 name: Alien-wxWidgets
-version: 0.33
+version: 0.34
 author:
   - 'Mattia Barbon <mbarbon at cpan.org>'
 abstract: 'building, finding and using wxWidgets binaries'
@@ -15,10 +15,10 @@
 provides:
   Alien::wxWidgets:
     file: lib/Alien/wxWidgets.pm
-    version: 0.33
+    version: 0.34
   Alien::wxWidgets::Utility:
     file: lib/Alien/wxWidgets/Utility.pm
-generated_by: Module::Build version 0.280801
+generated_by: Module::Build version 0.2808
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.2.html
   version: 1.2

Modified: branches/upstream/libalien-wxwidgets-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libalien-wxwidgets-perl/current/Makefile.PL?rev=18565&op=diff
==============================================================================
--- branches/upstream/libalien-wxwidgets-perl/current/Makefile.PL (original)
+++ branches/upstream/libalien-wxwidgets-perl/current/Makefile.PL Sun Apr 13 13:12:53 2008
@@ -1,5 +1,4 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.2808_01
-require 5.006;
+# Note: this file was auto-generated by Module::Build::Compat version 0.03
     
     unless (eval "use Module::Build::Compat 0.02; 1" ) {
       print "This module requires Module::Build to install itself.\n";

Modified: branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Any_wx_config.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Any_wx_config.pm?rev=18565&op=diff
==============================================================================
--- branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Any_wx_config.pm (original)
+++ branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Any_wx_config.pm Sun Apr 13 13:12:53 2008
@@ -183,7 +183,7 @@
 
 sub _key {
     my $self = shift;
-    my $compiler = $ENV{CXX} || $Config{cc};
+    my $compiler = $ENV{CXX} || $Config{ccname};
     my $key = $self->awx_get_name
       ( toolkit          => $self->awx_build_toolkit,
         version          => $self->_version_2_dec

Modified: branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/MacOSX_wx_config.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/MacOSX_wx_config.pm?rev=18565&op=diff
==============================================================================
--- branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/MacOSX_wx_config.pm (original)
+++ branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/MacOSX_wx_config.pm Sun Apr 13 13:12:53 2008
@@ -6,7 +6,7 @@
 sub awx_wx_config_data {
     my $self = shift;
     return $self->{awx_data} if $self->{awx_data};
-    my %data = %{$self->SUPER::awx_wx_config_data};
+    my %data = ( linkflags => '', %{$self->SUPER::awx_wx_config_data} );
 
     # MakeMaker does not like some options
     $data{libs} =~ s{-framework\s+\w+}{}g;

Modified: branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Win32.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Win32.pm?rev=18565&op=diff
==============================================================================
--- branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Win32.pm (original)
+++ branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Win32.pm Sun Apr 13 13:12:53 2008
@@ -204,7 +204,7 @@
     return 'WinCE' if $INC{'Cross.pm'};
 
     SWITCH: {
-        local $_ = $Config{cc};
+        local $_ = $Config{ccname};
 
         /^cl/i  and $package = 'Win32_MSVC'  and last SWITCH;
         /^gcc/i and $package = 'Win32_MinGW' and last SWITCH;

Modified: branches/upstream/libalien-wxwidgets-perl/current/lib/Alien/wxWidgets.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libalien-wxwidgets-perl/current/lib/Alien/wxWidgets.pm?rev=18565&op=diff
==============================================================================
--- branches/upstream/libalien-wxwidgets-perl/current/lib/Alien/wxWidgets.pm (original)
+++ branches/upstream/libalien-wxwidgets-perl/current/lib/Alien/wxWidgets.pm Sun Apr 13 13:12:53 2008
@@ -43,7 +43,7 @@
                       instantiate   => 'config';
 
 our $AUTOLOAD;
-our $VERSION = '0.33';
+our $VERSION = '0.34';
 our %VALUES;
 our $dont_remap;
 

Modified: branches/upstream/libalien-wxwidgets-perl/current/lib/Alien/wxWidgets/Utility.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libalien-wxwidgets-perl/current/lib/Alien/wxWidgets/Utility.pm?rev=18565&op=diff
==============================================================================
--- branches/upstream/libalien-wxwidgets-perl/current/lib/Alien/wxWidgets/Utility.pm (original)
+++ branches/upstream/libalien-wxwidgets-perl/current/lib/Alien/wxWidgets/Utility.pm Sun Apr 13 13:12:53 2008
@@ -43,7 +43,7 @@
 sub awx_cc_is_gcc {
     my( $cc ) = @_;
 
-    return    scalar( awx_capture( "$cc --version" ) =~ m/gcc/i ) # 3.x
+    return    scalar( awx_capture( "$cc --version" ) =~ m/g(cc|\+\+)/i ) # 3.x
            || scalar( awx_capture( "$cc" ) =~ m/gcc/i );          # 2.95
 }
 
@@ -184,7 +184,7 @@
     # the key already identifies the configuration
     return %args if $args{key};
 
-    my $cc = $ENV{CXX} || $ENV{CC} || $Config{cc};
+    my $cc = $ENV{CXX} || $ENV{CC} || $Config{ccname};
     my $kind = awx_compiler_kind( $cc );
     my $version = awx_cc_abi_version( $cc );
 




More information about the Pkg-perl-cvs-commits mailing list