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, 13 insertions, 0 deletions
diff --git a/macros/xerces-version.pl b/macros/xerces-version.pl
new file mode 100644
index 00000000..5c21b4e2
--- /dev/null
+++ b/macros/xerces-version.pl
@@ -0,0 +1,13 @@
+#!/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