зеркало из https://github.com/mozilla/pjs.git
something is wrong. for whatever reason there was a -DNO_SECURITY
that was always enabled, whether security was enabled or not. this caused a confusion on the compile line, there -DMOZ_SECURITY and -DNO_SECURITY would be simultaneously defined. as a temporary hack, duplicate the logic on mozilla/config/config.mk so that ifdef NO_SECURITY -DNO_SECURITY, else -DMOZ_SECURITY. what a mess. this needs to be fixed right.
This commit is contained in:
Родитель
27de869a11
Коммит
6893a3c1fc
|
@ -75,7 +75,11 @@ ifndef MOZ_MAIL_COMPOSE
|
||||||
DEFINES += -DMOZILLA_30
|
DEFINES += -DMOZILLA_30
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifdef NO_SECURITY
|
||||||
DEFINES += -DNO_SECURITY
|
DEFINES += -DNO_SECURITY
|
||||||
|
else
|
||||||
|
DEFINES += -DMOZ_SECURITY
|
||||||
|
endif
|
||||||
|
|
||||||
#
|
#
|
||||||
# Building the "mimefilt" executable, which reads a message from stdin and
|
# Building the "mimefilt" executable, which reads a message from stdin and
|
||||||
|
|
Загрузка…
Ссылка в новой задаче