From 841c596978de14c3e85d191d58d671758b59fffe Mon Sep 17 00:00:00 2001
From: Tobias Hintze
Date: Tue, 18 Oct 2005 14:34:15 +0000
Subject: [PATCH] Tobias Hintze | : fixed
user-agent-string in firefox (rv-part) the old user-agent string made
firefox unsupported for gmail
[2005100114182507617] (https://www.rocklinux.net/submaster)
git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@6457 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
---
package/x11/firefox/firefox.conf | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/package/x11/firefox/firefox.conf b/package/x11/firefox/firefox.conf
index 6aaa2fb3d..0d6d0d786 100644
--- a/package/x11/firefox/firefox.conf
+++ b/package/x11/firefox/firefox.conf
@@ -34,6 +34,10 @@ moz_main() {
export MOZILLA_OFFICIAL=1 BUILD_OFFICIAL=1
export MOZILLA_FIVE_HOME=$libdir/firefox-$ver
+ # we must not have $ver defined on the firefox version.
+ # it would become the "rv-part" of the User-Agent ID-String.
+ # we need to set it to the milestone version (mozilla version)
+ export ver="`grep '^[0-9]' ./config/milestone.txt`"
moz_fixup
moz_implant_version
|