Bug #106507 --> if BUILD_SMIME is defined in the build environment then don't build the smime

stub dll.

The mime changes have been contributed by ddrinan@netscape.com
r=ducarroz
sr=mscott
This commit is contained in:
mscott%netscape.com 2001-11-03 00:31:45 +00:00
parent f8e0e539fd
commit 07170b41fd
2 changed files with 13 additions and 2 deletions

View File

@ -26,7 +26,13 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
DIRS = vcard smimestub
DIRS = vcard
ifndef BUILD_SMIME
DIRS += smimestub
endif
DIRS += resources
include $(topsrcdir)/config/rules.mk

View File

@ -22,6 +22,11 @@
DEPTH=..\..\..
DIRS=vcard smimestub resources
DIRS= vcard \
resources \
!if !defined(BUILD_SMIME)
smimestub \
!endif
$(NULL)
include <$(DEPTH)\config\rules.mak>