#
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation.  Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s): 
#

DEPTH		= ../../..
topsrcdir	= @top_srcdir@
srcdir		= @srcdir@
VPATH		= @srcdir@

include $(DEPTH)/config/autoconf.mk

MODULE		= msgbase
LIBRARY_NAME	= msgbase_s
META_COMPONENT = mail
REQUIRES	= xpcom \
		  string \
		  necko \
		  dom \
		  appshell \
		  appcomps \
		  uconv \
		  intl \
		  htmlparser \
		  widget \
		  docshell \
		  rdf \
		  editor \
		  gfx \
		  layout \
		  content \
		  mailnews \
		  locale \
		  unicharutil \
		  msgbaseutil \
		  webshell \
		  txmgr \
		  msgcompose \
		  msgdb \
		  uriloader \
		  pref \
		  msglocal \
		  msgimap \
		  mork \
		  msgnews \
		  addrbook \
		  prefmigr \
		  chrome \
		  mime \
		  mimetype \
		  windowwatcher \
		  profile \
		  $(NULL)

CPPSRCS		= \
		nsMessenger.cpp \
		nsMessengerBootstrap.cpp \
		nsUrlListenerManager.cpp \
		nsMsgMailSession.cpp \
		nsMsgAccountManager.cpp \
		nsMsgAccount.cpp \
		nsCopyMessageStreamListener.cpp \
		nsMsgRDFDataSource.cpp \
		nsMsgFolderDataSource.cpp \
		nsMsgAccountManagerDS.cpp \
		nsMsgRDFUtils.cpp \
		nsMsgBiffManager.cpp \
		nsMsgNotificationManager.cpp \
		nsMsgCopyService.cpp \
		nsMsgFolderCache.cpp \
		nsMsgFolderCacheElement.cpp \
		nsMsgFolderCompactor.cpp \
		nsMsgStatusFeedback.cpp \
		nsMsgWindow.cpp \
		nsMessengerMigrator.cpp \
		nsMsgServiceProvider.cpp	\
		nsSubscribeDataSource.cpp	\
		nsSubscribableServer.cpp \
		nsMsgPrintEngine.cpp	\
		nsStatusBarBiffManager.cpp \
		nsMsgDBView.cpp \
		nsMsgThreadedDBView.cpp \
		nsMsgSpecialViews.cpp \
		nsMsgSearchDBView.cpp \
		nsMsgOfflineManager.cpp \
		nsMsgProgress.cpp \
		$(NULL)

ifeq ($(OS_ARCH),WINNT)
CPPSRCS		+= nsMessengerWinIntegration.cpp 
endif

EXPORTS		= \
		nsMessenger.h \
		nsMessengerBootstrap.h \
		nsUrlListenerManager.h \
		nsMsgMailSession.h \
		nsMsgAccountManager.h \
		nsMsgAccount.h \
		nsMsgFolderDataSource.h \
		nsMsgFolderCache.h \
		nsMsgAccountManagerDS.h \
		nsMsgRDFDataSource.h \
		nsMsgRDFUtils.h \
		nsMsgBiffManager.h \
		nsMsgNotificationManager.h \
		nsCopyMessageStreamListener.h \
		nsMsgCopyService.h \
		nsMsgStatusFeedback.h \
		nsMsgWindow.h \
		nsMessengerMigrator.h \
		nsMsgServiceProvider.h \
		nsSubscribeDataSource.h \
		nsSubscribableServer.h \
		nsMsgPrintEngine.h \
		nsStatusBarBiffManager.h \
		nsMsgProgress.h \
		$(NULL)

# we don't want the shared lib, but we want to force the creation of a static lib.
FORCE_STATIC_LIB = 1

include $(topsrcdir)/config/rules.mk

ifdef MOZ_MOVEMAIL
DEFINES	+= -DHAVE_MOVEMAIL
endif

