still some Symbian/S90 tweaks
authorJarkko Hietaniemi <jhi@iki.fi>
Fri, 26 Jan 2007 15:40:58 +0000 (17:40 +0200)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Fri, 26 Jan 2007 13:58:56 +0000 (13:58 +0000)
Message-Id: <20070126134058.83B0643A57@anubis.hut.fi>

p4raw-id: //depot/perl@30009

README.symbian
symbian/config.sh
symbian/xsbuild.pl

index 040b37a..b96a911 100644 (file)
@@ -402,7 +402,7 @@ We maintain the binary incompatibility.
 
 0.4.1: December 2006
 
-  - Perl 5.9.4 (patch level 29622)
+  - Perl 5.9.5 (patch level 30002)
   - added extensions: Compress/Raw/Zlib, Digest/SHA,
     Hash/Util, Math/BigInt/FastCalc, Text/Soundex, Time/Piece
   - port to S90 1.1 by alexander smishlajev
index 5645808..5a1b811 100644 (file)
@@ -765,7 +765,7 @@ uquadtype='uint64_t'
 use5005threads='undef'
 use64bitall='undef'
 use64bitint='undef'
-usecrosscompile='define'
+usecrosscompile='undef'
 usedl='undef'
 usefaststdio='undef'
 useithreads='undef'
index 5fbf4ae..939b569 100644 (file)
@@ -6,7 +6,7 @@ use Getopt::Long;
 use File::Basename;
 use Cwd;
 
-unshift @INC, dirname $0 or '.';
+unshift @INC, dirname $0 || '.';
 do "sanity.pl" or die $@;
 
 my $CoreBuild = -d "ext" && -f "perl.h" && -d "symbian" && -f "perl.c";
@@ -509,14 +509,14 @@ sub xsconfig {
         }
     }
     if ( my @c = glob("*.c *.cpp */*.c */*.cpp") ) {
-       @c = grep { ! m:^zlib-src/: } @c if $ext eq 'ext\Compress\Raw\Zlib';
+       map { s:^zlib-src/:: } @c if $ext eq 'ext\Compress\Raw\Zlib';
         for my $c (@c) {
             $c =~ s:/:\\:g;
             $src{$c}++;
         }
     }
     if ( my @h = glob("*.h */*.h") ) {
-        @h = grep { ! m:^zlib-src/: } @h if $ext eq 'ext\Compress\Raw\Zlib';
+        map { s:^zlib-src/:: } @h if $ext eq 'ext\Compress\Raw\Zlib';
         for my $h (@h) {
             $h =~ s:/:\\:g;
             $h = dirname($h);