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:
cyeh%netscape.com 1998-10-13 06:08:31 +00:00
parent 2f4eb25758
commit a0aa29a6e4

View File

@ -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