summaryrefslogtreecommitdiff
path: root/misc/bidwatcher
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2004-10-31 03:03:18 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2004-10-31 03:03:18 +0000
commitcd68b89c1e13c09c30086edbc040d2af5e30116a (patch)
treeaf67e53c44bbb24d6e3c184be56d6c1f9bb4886d /misc/bidwatcher
parent- update to 0.99.39 (diff)
Better detection of Mozilla browsers.
Notes
Notes: svn path=/head/; revision=120507
Diffstat (limited to 'misc/bidwatcher')
-rw-r--r--misc/bidwatcher/files/patch-bidwatcher.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/misc/bidwatcher/files/patch-bidwatcher.cpp b/misc/bidwatcher/files/patch-bidwatcher.cpp
new file mode 100644
index 000000000000..c38826f31fe2
--- /dev/null
+++ b/misc/bidwatcher/files/patch-bidwatcher.cpp
@@ -0,0 +1,7 @@
+--- bidwatcher.cpp.orig Mon Aug 30 18:03:34 2004
++++ bidwatcher.cpp Sat Oct 30 20:00:20 2004
+@@ -2972,2 +2972,2 @@
+- else if (strstr(browserPATH, "mozilla") != NULL) {
+- // Try to find mozilla.
++ else if (strcasestr(browserPATH, "mozilla") != NULL || strcasestr(browserPATH, "fire") != NULL) {
++ // Try to find mozilla, firefox, or firebird.