aboutsummaryrefslogtreecommitdiffstats
path: root/macros/xerces-version.pl
diff options
context:
space:
mode:
authorAndrew Hughes Chatham <chatham@src.gnome.org>2001-06-13 09:42:44 +0800
committerAndrew Hughes Chatham <chatham@src.gnome.org>2001-06-13 09:42:44 +0800
commitf3b14e95468d39b8d5f33f31b96154de38ac4d07 (patch)
treec47d45efd6e9ddd24a6eb63f2d79121ad2bbdbcb /macros/xerces-version.pl
parented1a06da11155cdeaea48fda6b930e799e905be1 (diff)
downloadgsoc2013-evolution-f3b14e95468d39b8d5f33f31b96154de38ac4d07.tar
gsoc2013-evolution-f3b14e95468d39b8d5f33f31b96154de38ac4d07.tar.gz
gsoc2013-evolution-f3b14e95468d39b8d5f33f31b96154de38ac4d07.tar.bz2
gsoc2013-evolution-f3b14e95468d39b8d5f33f31b96154de38ac4d07.tar.lz
gsoc2013-evolution-f3b14e95468d39b8d5f33f31b96154de38ac4d07.tar.xz
gsoc2013-evolution-f3b14e95468d39b8d5f33f31b96154de38ac4d07.tar.zst
gsoc2013-evolution-f3b14e95468d39b8d5f33f31b96154de38ac4d07.zip
Removing xerces tests. Didn't know this directory was in gnome-common
svn path=/trunk/; revision=10205
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 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