summaryrefslogtreecommitdiff
path: root/macros/xerces-version.pl
diff options
context:
space:
mode:
Diffstat (limited to 'macros/xerces-version.pl')
-rw-r--r--macros/xerces-version.pl13
1 files changed, 0 insertions, 13 deletions
diff --git a/macros/xerces-version.pl b/macros/xerces-version.pl
deleted file mode 100644
index 5c21b4e..0000000
--- a/macros/xerces-version.pl
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/perl
-
-$maj = 0;
-$min = 0;
-while (<>) {
- if (/xerces-c(\d+)_(\d+)\.so$/) {
- if ($1 > $maj || (\\$1 == $maj && \$2 > $min)) {
- $maj = $1;
- $min = $2;
- }
- }
-}
-print $maj,"_",$min