mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 00:47:31 +09:00
palemoon/installer: Fix packaging when built --with-system-nss/nspr
The variables set by 'configure' for --with-system-(nss|nspr) is named differently in UXP. This breaks packaging for palemoon when system nss/nspr is used. This commit corrects the name of said variables.
This commit is contained in:
parent
961f4c4dd0
commit
0f84519843
1 changed files with 4 additions and 4 deletions
|
|
@ -41,12 +41,12 @@ DEFINES += -DMOZ_GTK3=1
|
|||
endif
|
||||
endif
|
||||
|
||||
ifdef MOZ_NATIVE_NSPR
|
||||
DEFINES += -DMOZ_NATIVE_NSPR=1
|
||||
ifdef MOZ_SYSTEM_NSPR
|
||||
DEFINES += -DMOZ_SYSTEM_NSPR=1
|
||||
endif
|
||||
|
||||
ifdef MOZ_NATIVE_NSS
|
||||
DEFINES += -DMOZ_NATIVE_NSS=1
|
||||
ifdef MOZ_SYSTEM_NSS
|
||||
DEFINES += -DMOZ_SYSTEM_NSS=1
|
||||
endif
|
||||
|
||||
ifdef NSS_DISABLE_DBM
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue