summaryrefslogtreecommitdiff
path: root/symbian
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2007-01-26 17:40:58 +0200
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-01-26 13:58:56 +0000
commit5909b2ae83b782be73778dd9436dc31be4d39529 (patch)
treef2f16774d1799a5a4ae7fcd7bf81e092e65765fa /symbian
parentd4b3706fe134a5650e0a537022f434d921851fff (diff)
downloadperl-5909b2ae83b782be73778dd9436dc31be4d39529.tar.gz
still some Symbian/S90 tweaks
Message-Id: <20070126134058.83B0643A57@anubis.hut.fi> p4raw-id: //depot/perl@30009
Diffstat (limited to 'symbian')
-rw-r--r--symbian/config.sh2
-rw-r--r--symbian/xsbuild.pl6
2 files changed, 4 insertions, 4 deletions
diff --git a/symbian/config.sh b/symbian/config.sh
index 5645808d1a..5a1b8116e9 100644
--- a/symbian/config.sh
+++ b/symbian/config.sh
@@ -765,7 +765,7 @@ uquadtype='uint64_t'
use5005threads='undef'
use64bitall='undef'
use64bitint='undef'
-usecrosscompile='define'
+usecrosscompile='undef'
usedl='undef'
usefaststdio='undef'
useithreads='undef'
diff --git a/symbian/xsbuild.pl b/symbian/xsbuild.pl
index 5fbf4aeb5c..939b569101 100644
--- a/symbian/xsbuild.pl
+++ b/symbian/xsbuild.pl
@@ -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);