mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 22:38:41 +09:00
Fix preprocessor conditional precedence in application.ini
This commit is contained in:
parent
b72012f9c2
commit
f0536c394b
1 changed files with 7 additions and 3 deletions
|
|
@ -18,14 +18,18 @@
|
|||
#include @TOPOBJDIR@/buildid.h
|
||||
#include @TOPOBJDIR@/source-repo.h
|
||||
[App]
|
||||
#if defined(MC_OFFICIAL) && defined(MC_PALEMOON) || defined(MC_BASILISK)
|
||||
#ifdef MC_OFFICIAL
|
||||
#if defined(MC_PALEMOON) || defined(MC_BASILISK)
|
||||
Vendor=Moonchild Productions
|
||||
#elif defined(MC_OFFICIAL) && defined(BINOC_BOREALIS)
|
||||
#elif defined(BINOC_BOREALIS)
|
||||
Vendor=Binary Outcast
|
||||
#else
|
||||
Vendor=@MOZ_APP_VENDOR@
|
||||
#endif
|
||||
#if defined(MC_OFFICIAL) && defined(MC_PALEMOON)
|
||||
#else
|
||||
Vendor=@MOZ_APP_VENDOR@
|
||||
#endif
|
||||
#ifdef MC_PALEMOON
|
||||
Name=Pale Moon
|
||||
#else
|
||||
Name=@MOZ_APP_BASENAME@
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue