diff options
Diffstat (limited to 'macros/xerces-version.pl')
-rw-r--r-- | macros/xerces-version.pl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/macros/xerces-version.pl b/macros/xerces-version.pl new file mode 100644 index 0000000000..5c21b4e275 --- /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 |