[Pale Moon] Add a configure flag to functionally disable personas at build time

This commit is contained in:
Matt A. Tobin 2019-06-29 11:26:21 -04:00 • committed by Roy Tam
commit c135f205d9
6 changed files with 23 additions and 1 deletions

View file

@ -36,3 +36,16 @@ MOZ_ARG_DISABLE_BOOL(sync,
MOZ_SERVICES_SYNC=,
MOZ_SERVICES_SYNC=1)
dnl ========================================================
dnl = Disable Lightweight Themes
dnl ========================================================
MOZ_ARG_DISABLE_BOOL(personas,
[ --disable-personas Disable lightweight theme support],
MOZ_PERSONAS=,
MOZ_PERSONAS=1)
if test -n "$MOZ_PERSONAS"; then
AC_DEFINE(MOZ_PERSONAS)
fi
AC_SUBST(MOZ_PERSONAS)