View | Details | Raw Unified | Return to bug 68221
Collapse All | Expand All

(-)firefox/Makefile (-1 / +11 lines)
Lines 53-59 Link Here
53
		HEADERS "Install headers and IDL files" off \
53
		HEADERS "Install headers and IDL files" off \
54
		LOGGING "Enable additional log messages" off \
54
		LOGGING "Enable additional log messages" off \
55
		OPTIMIZED_CFLAGS "Enable some additional optimizations" off \
55
		OPTIMIZED_CFLAGS "Enable some additional optimizations" off \
56
		XFT "Enable support for anti-aliased fonts" on
56
		XFT "Enable support for anti-aliased fonts" on \
57
		SMB "Enable smb:// URI support using gnomevfs" off
57
58
58
.include <bsd.port.pre.mk>
59
.include <bsd.port.pre.mk>
59
60
Lines 79-84 Link Here
79
LIB_DEPENDS+=	Xft.2:${PORTSDIR}/x11-fonts/libXft
80
LIB_DEPENDS+=	Xft.2:${PORTSDIR}/x11-fonts/libXft
80
.endif # !defined(WITHOUT_XFT)
81
.endif # !defined(WITHOUT_XFT)
81
82
83
.if defined(WITH_SMB)
84
USE_GNOME+=     gnomevfs2
85
CONFIGURE_ENV+= WITH_SMB=yes
86
.endif # defined(WITH_SMB)
87
82
CPPFLAGS+=		-I${X11BASE}/include -I${LOCALBASE}/include
88
CPPFLAGS+=		-I${X11BASE}/include -I${LOCALBASE}/include
83
CFLAGS+=		${PTHREAD_CFLAGS}
89
CFLAGS+=		${PTHREAD_CFLAGS}
84
LDFLAGS+=		-L${X11BASE}/lib
90
LDFLAGS+=		-L${X11BASE}/lib
Lines 205-209 Link Here
205
			fi; \
211
			fi; \
206
		done; \
212
		done; \
207
	fi
213
	fi
214
215
.if defined(WITH_SMB)
216
	@${CAT} pkg-message.gnomevfs
217
.endif
208
218
209
.include <bsd.port.post.mk>
219
.include <bsd.port.post.mk>
(-)firefox/files/mozconfig.in (-1 / +4 lines)
Lines 42-48 Link Here
42
ac_add_options --disable-profilesharing
42
ac_add_options --disable-profilesharing
43
ac_add_options --disable-installer
43
ac_add_options --disable-installer
44
ac_add_options --enable-image-decoders=png,gif,jpeg,bmp
44
ac_add_options --enable-image-decoders=png,gif,jpeg,bmp
45
ac_add_options --enable-extensions=cookie,xml-rpc,xmlextras,p3p,pref,transformiix,universalchardet,typeaheadfind,webservices,inspector,venkman
45
ac_add_options --enable-extensions=cookie,xml-rpc,xmlextras,p3p,pref,transformiix,universalchardet,typeaheadfind,webservices,inspector,venkman,gnomevfs
46
######################################################################
46
######################################################################
47
# conditional from port Makefile
47
# conditional from port Makefile
48
#if test -n "$WITH_REORDER"; then
48
#if test -n "$WITH_REORDER"; then
Lines 68-71 Link Here
68
else
68
else
69
    ac_add_options --disable-xft
69
    ac_add_options --disable-xft
70
fi # test -z "$WITHOUT_XFT"
70
fi # test -z "$WITHOUT_XFT"
71
if test -z "$WITH_SMB"; then
72
    ac_add_options --disable-gnomevfs
73
fi # test -n "$WITH_SMB"
71
######################################################################
74
######################################################################
(-)firefox/pkg-message.gnomevfs (+20 lines)
Line 0 Link Here
1
======================================================================
2
GNOMEVFS SUPPORT:
3
It is new and currently has issues to be ironed out.
4
5
You must delete your components registry for gnomevfs to register:
6
7
rm ~/.mozilla/firefox/default.*/compreg.dat
8
9
SMB issues:
10
Network group, machine, and share browsing does not work correctly.
11
12
SFTP:
13
Only sftp access using public key authentication works.  To easily
14
setup public key authentication to "remote_host":
15
16
ssh-keygen -t dsa
17
cat ~/.ssh/id_dsa.pub | ssh remote_host "cat >> .ssh/authorized_keys"
18
19
The SSH sever on remote_host must allow pub key authentication.
20
======================================================================

Return to bug 68221