diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-06-24 16:33:53 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-06-24 16:33:53 +0000 |
commit | a44095ee68cd67d68a70fbb5e2dac98cd63cb6da (patch) | |
tree | 6761bfc0b4b4713079709ea16d7453e0a5a51f8b /www/firefox15/files | |
parent | Yummy, shared libraries! (diff) |
* Add optional support for gnome-vfs support (e.g. smb:// and sftp:// URLs) [1]
* Fix a problem with the pkg-config files referencing mozilla components
and not firefox components
PR: 68221 [1]
Submitted by: Tom McLaughlin <tmclaugh@sdf.lonestar.org> [1]
Notes
Notes:
svn path=/head/; revision=112150
Diffstat (limited to 'www/firefox15/files')
-rw-r--r-- | www/firefox15/files/mozconfig.in | 5 | ||||
-rw-r--r-- | www/firefox15/files/patch-build_unix_mozilla-xpcom.pc.in | 8 |
2 files changed, 12 insertions, 1 deletions
diff --git a/www/firefox15/files/mozconfig.in b/www/firefox15/files/mozconfig.in index 68a01ee39874..2f4aa77dd545 100644 --- a/www/firefox15/files/mozconfig.in +++ b/www/firefox15/files/mozconfig.in @@ -42,7 +42,7 @@ ac_add_options --disable-pedantic ac_add_options --disable-profilesharing ac_add_options --disable-installer ac_add_options --enable-image-decoders=png,gif,jpeg,bmp -ac_add_options --enable-extensions=cookie,xml-rpc,xmlextras,p3p,pref,transformiix,universalchardet,typeaheadfind,webservices,inspector,venkman +ac_add_options --enable-extensions=cookie,xml-rpc,xmlextras,p3p,pref,transformiix,universalchardet,typeaheadfind,webservices,inspector,venkman,gnomevfs ###################################################################### # conditional from port Makefile #if test -n "$WITH_REORDER"; then @@ -68,4 +68,7 @@ if test -z "$WITHOUT_XFT"; then else ac_add_options --disable-xft fi # test -z "$WITHOUT_XFT" +if test -z "$WITH_SMB"; then + ac_add_options --disable-gnomevfs +fi # test -z "$WITH_SMB" ###################################################################### diff --git a/www/firefox15/files/patch-build_unix_mozilla-xpcom.pc.in b/www/firefox15/files/patch-build_unix_mozilla-xpcom.pc.in new file mode 100644 index 000000000000..4e982a5443e8 --- /dev/null +++ b/www/firefox15/files/patch-build_unix_mozilla-xpcom.pc.in @@ -0,0 +1,8 @@ +--- build/unix/mozilla-xpcom.pc.in.orig Thu Jun 24 12:23:09 2004 ++++ build/unix/mozilla-xpcom.pc.in Thu Jun 24 12:23:18 2004 +@@ -8,4 +8,4 @@ + Version: %MOZILLA_VERSION% + Requires: mozilla-nspr = %MOZILLA_VERSION% + Libs: -L${libdir} -lxpcom +-Cflags: -I${includedir}/xpcom -I${includedir}/string ++Cflags: -I${includedir}/xpcom -I${includedir}/string -I${includedir} |