summaryrefslogtreecommitdiff
path: root/mail/thunderbird-devel/files/patch-mail_app_mozilla.in
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2004-11-22 04:16:25 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2004-11-22 04:16:25 +0000
commitabbdc8775296ce96af3d534470d465c874216cff (patch)
treedea8e0e2afc37cacbef38b60289c77497b0a9260 /mail/thunderbird-devel/files/patch-mail_app_mozilla.in
parentUse -Bsymbolic when linking nss to avoid symbol conflicts with libraries (diff)
* Instead of using Xvfb, and evil black magic to create the extensions
repository, use the hidden "-register" option instead. This has the advantage of not requiring an X DISPLAY and not modifying any preferences. * Add i18n support to the Thunderbird startup script [1] * Link nss with -Bsymbolic to avoid symbol conflicts with OpenSSL. This should help alleviate the CUPS printing problem PR: 73839 [1] Submitted by: Jose M Rodriguez <josemi@freebsd.jazztel.es> [1]
Notes
Notes: svn path=/head/; revision=122116
Diffstat (limited to 'mail/thunderbird-devel/files/patch-mail_app_mozilla.in')
-rw-r--r--mail/thunderbird-devel/files/patch-mail_app_mozilla.in34
1 files changed, 34 insertions, 0 deletions
diff --git a/mail/thunderbird-devel/files/patch-mail_app_mozilla.in b/mail/thunderbird-devel/files/patch-mail_app_mozilla.in
new file mode 100644
index 000000000000..12eed67ff3ef
--- /dev/null
+++ b/mail/thunderbird-devel/files/patch-mail_app_mozilla.in
@@ -0,0 +1,34 @@
+--- mail/app/mozilla.in.orig Thu Nov 11 23:14:17 2004
++++ mail/app/mozilla.in Thu Nov 11 23:15:43 2004
+@@ -218,12 +218,31 @@
+ script_args="$script_args -d $2"
+ shift 2
+ ;;
++ -UILocale)
++ moreargs="$moreargs -UILocale $2"
++ _done_locale="YES"
++ shift 2
++ ;;
++ -UIRegion)
++ if [ -n "${_done_locale}" ]; then
++ moreargs="$moreargs -UIRegion $2"
++ fi
++ shift 2
++ ;;
+ *)
+ moreargs="$moreargs \"$1\""
+ shift 1
+ ;;
+ esac
+ done
++
++if [ ! -n "${_done_locale}" -a -n "${MOZILLA_UILOCALE}" ]; then
++ moreargs="$moreargs -UILocale ${MOZILLA_UILOCALE}"
++ if [ -n "${MOZILLA_UIREGION}" ]; then
++ moreargs="$moreargs -UIRegion ${MOZILLA_UIREGION}"
++ fi
++fi
++unset _done_locale
+
+ export MRE_HOME
+ eval "set -- $moreargs"