diff options
Diffstat (limited to 'symbian/sanity.pl')
-rw-r--r-- | symbian/sanity.pl | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/symbian/sanity.pl b/symbian/sanity.pl new file mode 100644 index 0000000000..eb50244dde --- /dev/null +++ b/symbian/sanity.pl @@ -0,0 +1,28 @@ +use strict; + +if (exists $ENV{'!C:'}) { + print "You are running this under Cygwin, aren't you?\n"; + print "I'm sorry but only cmd.exe will work.\n"; + exit(1); +} + +if (# SDK 2.x + $ENV{PATH} !~ m!c:\\program files\\common files\\symbian\\tools!i + && + # SDK 1.2 + $ENV{PATH} !~ m!c:\\symbian\\6.1\\shared\\epoc32\\tools!i) { + print "I think you have not installed the Symbian SDK.\n"; + exit(1); +} + +unless (-f "symbian/symbianish.h") { + print "You must run this in the top level directory.\n"; + exit(1); +} + +if ($] < 5.008) { + print "You must configure with Perl 5.8 or later.\n"; + exit(1); +} + +1; |