This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Remove Symbian port
[perl5.git] / symbian / version.pl
diff --git a/symbian/version.pl b/symbian/version.pl
deleted file mode 100644 (file)
index f4208f8..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-use strict;
-
-my %VERSION;
-
-if (open(PATCHLEVEL_H, "<", "patchlevel.h")) {
-  while (<PATCHLEVEL_H>) {
-     if (/#define\s+PERL_(REVISION|VERSION|SUBVERSION)\s+(\d+)/) {
-         $VERSION{$1} = $2;
-     }
-  }
-  close PATCHLEVEL_H;
-} else {
-  die "$0: patchlevel.h: $!\n";
-}
-
-die "$0: Perl release looks funny.\n"
-  unless (defined $VERSION{REVISION} && $VERSION{REVISION} == 5 &&
-          defined $VERSION{VERSION}  && $VERSION{VERSION}  >= 8 &&
-          defined $VERSION{SUBVERSION});
-
-
-\%VERSION;