diff options
author | Christian Persch <chpe@src.gnome.org> | 2004-12-16 21:41:10 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-12-16 21:41:10 +0800 |
commit | 863bbb4f3e67cafad1f08d7bc08362b6df2785bd (patch) | |
tree | 337f251a27de59c36d2c89ce3598b12ce4a784b4 /embed | |
parent | 046e8b96bc77f0adfed67ed7f111a9e6002913f9 (diff) | |
download | gsoc2013-epiphany-863bbb4f3e67cafad1f08d7bc08362b6df2785bd.tar gsoc2013-epiphany-863bbb4f3e67cafad1f08d7bc08362b6df2785bd.tar.gz gsoc2013-epiphany-863bbb4f3e67cafad1f08d7bc08362b6df2785bd.tar.bz2 gsoc2013-epiphany-863bbb4f3e67cafad1f08d7bc08362b6df2785bd.tar.lz gsoc2013-epiphany-863bbb4f3e67cafad1f08d7bc08362b6df2785bd.tar.xz gsoc2013-epiphany-863bbb4f3e67cafad1f08d7bc08362b6df2785bd.tar.zst gsoc2013-epiphany-863bbb4f3e67cafad1f08d7bc08362b6df2785bd.zip |
Removed
Diffstat (limited to 'embed')
-rw-r--r-- | embed/mozilla/mozilla-version.h | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/embed/mozilla/mozilla-version.h b/embed/mozilla/mozilla-version.h deleted file mode 100644 index 3dc260cdf..000000000 --- a/embed/mozilla/mozilla-version.h +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Copyright (C) 2004 Crispin Flowerday - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2, or (at your option) - * any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * - * $Id$ - */ - -#ifndef MOZILLA_VERSION_H -#define MOZILLA_VERSION_H - -/** - * Create a version int from components - */ -#define VERSION4(a,b,c,d) ((a << 24) + (b << 16) + (c << 8) + d) - -/** - * Macros for comparing mozilla version numbers - */ -#define MOZILLA_ALPHA 1 -#define MOZILLA_BETA 2 -#define MOZILLA_RC 3 -#define MOZILLA_RELEASE 4 - -#define MOZILLA_CHECK_VERSION4(major, minor, type, micro) \ - (VERSION4(MOZILLA_MAJOR, MOZILLA_MINOR, MOZILLA_TYPE, MOZILLA_MICRO) >= \ - VERSION4(major, minor, type, micro)) - -#define MOZILLA_CHECK_VERSION3(a,b,c) MOZILLA_CHECK_VERSION4(a,b,MOZILLA_RELEASE,c) -#define MOZILLA_CHECK_VERSION2(a,b) MOZILLA_CHECK_VERSION3(a,b,0) - -#define MOZILLA_IS_VERSION4(major, minor, type, micro) \ - (VERSION4(MOZILLA_MAJOR, MOZILLA_MINOR, MOZILLA_TYPE, MOZILLA_MICRO) == \ - VERSION4(major, minor, type, micro)) - -#define MOZILLA_IS_BRANCH(major, minor) \ - (MOZILLA_MAJOR == major && MOZILLA_MINOR == minor) - -/* Use the following: - * - * 1.4.1 -> MOZILLA_CHECK_VERSION3 (1,4,1) - * 1.7 -> MOZILLA_CHECK_VERSION2 (1,7) - * 1.8a1 -> MOZILLA_CHECK_VERSION4 (1,8,MOZILLA_ALPHA,1) - * 1.7a -> MOZILLA_CHECK_VERSION4 (1,7,MOZILLA_ALPHA,0) - * 1.7rc2 -> MOZILLA_CHECK_VERSION4 (1,7,MOZILLA_RC, 2) - */ - -#endif /* MOZILLA_VERSION_H */ |