Thunderbird and Seamonkey from v60 onwards are now built from the 'comm/mail'
and 'comm/suite' application targets respectively, instead of the old
'mail' and 'suite'. This change is not backwards compatible with mozilla
versions prior to v60.
seamonkey)
# Must create the initial mozconfig to enable application
: >.mozconfig || die "initial mozconfig creation failed"
- mozconfig_annotate "" --enable-application=suite ;;
+ # NOTE--this is not compatible with mozilla prior to v60
+ mozconfig_annotate "" --enable-application=comm/suite ;;
*thunderbird)
# Must create the initial mozconfig to enable application
: >.mozconfig || die "initial mozconfig creation failed"
- mozconfig_annotate "" --enable-application=mail ;;
+ # NOTE--this is not compatible with mozilla prior to v60
+ mozconfig_annotate "" --enable-application=comm/mail ;;
esac
####################################