From 07170b41fdb21e0228176143caecb3ae4da52eb9 Mon Sep 17 00:00:00 2001 From: "mscott%netscape.com" Date: Sat, 3 Nov 2001 00:31:45 +0000 Subject: [PATCH] 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 --- mailnews/mime/cthandlers/Makefile.in | 8 +++++++- mailnews/mime/cthandlers/makefile.win | 7 ++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/mailnews/mime/cthandlers/Makefile.in b/mailnews/mime/cthandlers/Makefile.in index 863045ee76ed..793cd38b6354 100644 --- a/mailnews/mime/cthandlers/Makefile.in +++ b/mailnews/mime/cthandlers/Makefile.in @@ -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 diff --git a/mailnews/mime/cthandlers/makefile.win b/mailnews/mime/cthandlers/makefile.win index 18a2c57a5f36..c4c52a957a78 100644 --- a/mailnews/mime/cthandlers/makefile.win +++ b/mailnews/mime/cthandlers/makefile.win @@ -22,6 +22,11 @@ DEPTH=..\..\.. -DIRS=vcard smimestub resources +DIRS= vcard \ + resources \ +!if !defined(BUILD_SMIME) + smimestub \ +!endif + $(NULL) include <$(DEPTH)\config\rules.mak>