aboutsummaryrefslogtreecommitdiffstats
path: root/macros/mozilla-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/mozilla-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/mozilla-version.pl')
-rw-r--r--macros/mozilla-version.pl12
1 files changed, 0 insertions, 12 deletions
diff --git a/macros/mozilla-version.pl b/macros/mozilla-version.pl
deleted file mode 100644
index 21e20c63ff..0000000000
--- a/macros/mozilla-version.pl
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/perl
-
-# Tiny Perl script to check the mozilla version. I don't even like Perl.
-# to make things easier on myself, I'm just going to treat the mozilla version as base 10. This will probably break
-
-# Author: Andrew Chatham
-
-$ver = 0;
-while (<>) {
- if (/useragent.misc\", \"rv:([0-9]+)\.([0-9]+)\.([0-9]+)/) { $ver = $1 * 100 + $2 * 10 + $3; }
-}
-print $ver;