blob: c23b82d162a05ff9b81c6f49f11840d07925172d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-ac,v 1.12 2004/10/21 06:30:39 xtraeme Exp $
--- src/af/xap/unix/xap_UnixFrameImpl.cpp.orig 2004-02-15 22:48:32.000000000 +0100
+++ src/af/xap/unix/xap_UnixFrameImpl.cpp 2004-09-09 00:09:08.000000000 +0200
@@ -1656,6 +1656,11 @@
fmtstring = "phoenix '%s' &";
execstring = g_strdup_printf(fmtstring, szURL);
}
+ else if(progExists("firefox"))
+ {
+ fmtstring = "firefox -a firefox -remote openURL\\('%s'\\) || firefox '%s' &";
+ execstring = g_strdup_printf(fmtstring, szURL, szURL);
+ }
else if(progExists("netscape"))
{
// Try to connect to a running Netscape, if not, start new one
|