fixing issue #148
This commit is contained in:
parent
0ffb0ad651
commit
7fdbe2af4a
2 changed files with 6 additions and 5 deletions
|
|
@ -11,16 +11,17 @@ ac_add_options --enable-optimize
|
||||||
ac_add_options --enable-release
|
ac_add_options --enable-release
|
||||||
ac_add_options --enable-rust-simd
|
ac_add_options --enable-rust-simd
|
||||||
|
|
||||||
ac_add_options --with-app-name=librewolf
|
#ac_add_options --with-app-name=librewolf
|
||||||
ac_add_options --with-branding=browser/branding/librewolf
|
ac_add_options --with-branding=browser/branding/librewolf
|
||||||
|
|
||||||
ac_add_options --with-unsigned-addon-scopes=app,system
|
ac_add_options --with-unsigned-addon-scopes=app,system
|
||||||
|
|
||||||
# see issue # https://gitlab.com/librewolf-community/browser/arch/-/issues/49
|
# see issue # https://gitlab.com/librewolf-community/browser/arch/-/issues/49
|
||||||
|
export MOZ_REQUIRE_SIGNING=
|
||||||
|
|
||||||
mk_add_options MOZ_CRASHREPORTER=0
|
mk_add_options MOZ_CRASHREPORTER=0
|
||||||
mk_add_options MOZ_DATA_REPORTING=0
|
mk_add_options MOZ_DATA_REPORTING=0
|
||||||
mk_add_options MOZ_NORMANTY=0
|
mk_add_options MOZ_NORMANTY=0
|
||||||
mk_add_options MOZ_REQUIRE_SIGNING=
|
|
||||||
mk_add_options MOZ_SERVICES_HEALTHREPORT=0
|
mk_add_options MOZ_SERVICES_HEALTHREPORT=0
|
||||||
mk_add_options MOZ_TELEMETRY_REPORTING=0
|
mk_add_options MOZ_TELEMETRY_REPORTING=0
|
||||||
|
|
||||||
|
|
@ -33,5 +34,3 @@ mk_add_options MOZ_TELEMETRY_REPORTING=0
|
||||||
ac_add_options --disable-updater
|
ac_add_options --disable-updater
|
||||||
ac_add_options --disable-maintenance-service
|
ac_add_options --disable-maintenance-service
|
||||||
ac_add_options --enable-strip
|
ac_add_options --enable-strip
|
||||||
|
|
||||||
ac_add_options --enable-default-toolkit=cairo-windows
|
|
||||||
|
|
|
||||||
4
mk.py
4
mk.py
|
|
@ -83,7 +83,9 @@ def build():
|
||||||
|
|
||||||
def artifacts():
|
def artifacts():
|
||||||
|
|
||||||
_with_app_name = True # Trying to fix issue #146 -> https://gitlab.com/librewolf-community/browser/windows/-/issues/146
|
# Trying to fix issue #146 -> https://gitlab.com/librewolf-community/browser/windows/-/issues/146
|
||||||
|
# (keep this False for now)
|
||||||
|
_with_app_name = False
|
||||||
|
|
||||||
with open('version','r') as file1:
|
with open('version','r') as file1:
|
||||||
version = file1.read().rstrip()
|
version = file1.read().rstrip()
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue