mirror of
https://github.com/roytam1/UXP.git
synced 2026-05-26 14:54:25 +00:00
Fix preprocessor conditional precedence in application.ini
This commit is contained in:
@@ -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@
|
||||
|
||||
Reference in New Issue
Block a user