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. git-svn-id: svn://10.0.0.236/trunk@12671 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
d2c44f767c
commit
f5ee6c472f
@ -75,7 +75,11 @@ ifndef MOZ_MAIL_COMPOSE
|
||||
DEFINES += -DMOZILLA_30
|
||||
endif
|
||||
|
||||
ifdef NO_SECURITY
|
||||
DEFINES += -DNO_SECURITY
|
||||
else
|
||||
DEFINES += -DMOZ_SECURITY
|
||||
endif
|
||||
|
||||
#
|
||||
# Building the "mimefilt" executable, which reads a message from stdin and
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user