diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2007-01-01 03:49:03 -0500 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2007-01-01 15:41:48 +0000 |
commit | 53d44271720d88220a01b5620a93869665083b01 (patch) | |
tree | 1dad3ec38b4010490e014136342b7211ea4f48c0 /symbian/makesis.pl | |
parent | 22735491a787756cfbfdb6b4e8124a882f0abd9a (diff) | |
download | perl-53d44271720d88220a01b5620a93869665083b01.tar.gz |
Symbian port: add Series 90 support
Message-ID: <4599114F.8020307@iki.fi>
p4raw-id: //depot/perl@29650
Diffstat (limited to 'symbian/makesis.pl')
-rw-r--r-- | symbian/makesis.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/symbian/makesis.pl b/symbian/makesis.pl index 8072249785..dbf533ce7b 100644 --- a/symbian/makesis.pl +++ b/symbian/makesis.pl @@ -19,6 +19,7 @@ my %PORT = %{ do "port.pl" }; my $ARM = 'thumb'; # TODO my $S60SDK = $ENV{S60SDK}; # from sdk.pl my $S80SDK = $ENV{S80SDK}; # from sdk.pl +my $S90SDK = $ENV{S90SDK}; # from sdk.pl my $UREL = $ENV{UREL}; # from sdk.pl $UREL =~ s/-ARM-/$ARM/; @@ -160,6 +161,8 @@ for my $target (@target) { qq[;Supports Series 60 v0.9\n(0x101F6F88), 0, 0, 0, {"Series60ProductID"}\n] : defined $S80SDK ? qq[;Supports Series 80 v2.0\n(0x101F8ED2), 0, 0, 0, {"Series80ProductID"}\n] : + defined $S90SDK ? +qq[;Supports Series 90 v1.1\n(0x101FBE05), 0, 0, 0, {"Series90ProductID"}\n] : ";Supports Series NN"; open PKG, ">$pkg" or die "$0: failed to create $pkg: $!\n"; |