aboutsummaryrefslogtreecommitdiffstats
path: root/macros/xerces-version.pl
diff options
context:
space:
mode:
authorAndrew Hughes Chatham <chatham@src.gnome.org>2001-07-23 02:52:12 +0800
committerAndrew Hughes Chatham <chatham@src.gnome.org>2001-07-23 02:52:12 +0800
commit13c7f54818b9b6a25a47289768d17e5a885cec7a (patch)
treea506b52493f13ac96f4f85507151d59ebdcbfe6b /macros/xerces-version.pl
parentced2af332134dcdf783ef6d86d6f6ab8b948589b (diff)
downloadgsoc2013-evolution-13c7f54818b9b6a25a47289768d17e5a885cec7a.tar
gsoc2013-evolution-13c7f54818b9b6a25a47289768d17e5a885cec7a.tar.gz
gsoc2013-evolution-13c7f54818b9b6a25a47289768d17e5a885cec7a.tar.bz2
gsoc2013-evolution-13c7f54818b9b6a25a47289768d17e5a885cec7a.tar.lz
gsoc2013-evolution-13c7f54818b9b6a25a47289768d17e5a885cec7a.tar.xz
gsoc2013-evolution-13c7f54818b9b6a25a47289768d17e5a885cec7a.tar.zst
gsoc2013-evolution-13c7f54818b9b6a25a47289768d17e5a885cec7a.zip
Removing these macros from the global gnome macros directory. Sorry about that.
svn path=/trunk/; revision=11299
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