diff options
author | nobody <nobody@localhost> | 2001-07-21 05:39:10 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2001-07-21 05:39:10 +0800 |
commit | e5b0c9abd7f9a1759ff942ac9d3a1eb53ddbc1b8 (patch) | |
tree | 73e0cf26a0654d0e265dc3951ab83d825af9dd1f /macros/xerces-version.pl | |
parent | 5637adc2c07617b7f5ea206d24cfa073787a4e0d (diff) | |
download | gsoc2013-evolution-METATHEME_0_6_1.tar gsoc2013-evolution-METATHEME_0_6_1.tar.gz gsoc2013-evolution-METATHEME_0_6_1.tar.bz2 gsoc2013-evolution-METATHEME_0_6_1.tar.lz gsoc2013-evolution-METATHEME_0_6_1.tar.xz gsoc2013-evolution-METATHEME_0_6_1.tar.zst gsoc2013-evolution-METATHEME_0_6_1.zip |
This commit was manufactured by cvs2svn to create tagMETATHEME_0_6_1
'METATHEME_0_6_1'.
svn path=/tags/METATHEME_0_6_1/; revision=11288
Diffstat (limited to 'macros/xerces-version.pl')
-rw-r--r-- | macros/xerces-version.pl | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/macros/xerces-version.pl b/macros/xerces-version.pl deleted file mode 100644 index 5c21b4e275..0000000000 --- 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 |