diff options
author | obrien <obrien@FreeBSD.org> | 2004-10-31 11:03:18 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2004-10-31 11:03:18 +0800 |
commit | 3e47ec4d0e168f7cfd52c32abbd98c2aa5904a4b (patch) | |
tree | 7acbbcb19ace444fc6b011909c86c0a5eda830ba /misc/bidwatcher | |
parent | 2eeae1f61d3bc0ada5ae8288a5e4001d63e40465 (diff) | |
download | freebsd-ports-gnome-3e47ec4d0e168f7cfd52c32abbd98c2aa5904a4b.tar.gz freebsd-ports-gnome-3e47ec4d0e168f7cfd52c32abbd98c2aa5904a4b.tar.zst freebsd-ports-gnome-3e47ec4d0e168f7cfd52c32abbd98c2aa5904a4b.zip |
Better detection of Mozilla browsers.
Diffstat (limited to 'misc/bidwatcher')
-rw-r--r-- | misc/bidwatcher/files/patch-bidwatcher.cpp | 7 |
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. |