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
Родитель f8e0e539fd
Коммит 07170b41fd
2 изменённых файлов: 13 добавлений и 2 удалений

Просмотреть файл

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

Просмотреть файл

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