1999-05-07 21:23:07 +00:00
|
|
|
#
|
2004-04-17 18:33:16 +00:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-05-07 21:23:07 +00:00
|
|
|
#
|
2004-04-17 18:33:16 +00:00
|
|
|
# The contents of this file are subject to the Mozilla 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/MPL/
|
|
|
|
#
|
|
|
|
# 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.
|
1999-05-07 21:23:07 +00:00
|
|
|
#
|
1999-11-06 03:43:54 +00:00
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
2004-04-17 18:33:16 +00:00
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Netscape Communications Corporation.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
1999-11-06 03:43:54 +00:00
|
|
|
#
|
2004-04-17 18:33:16 +00:00
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
1999-07-02 21:30:31 +00:00
|
|
|
#
|
2004-04-17 18:33:16 +00:00
|
|
|
# ***** END LICENSE BLOCK *****
|
1999-05-07 21:23:07 +00:00
|
|
|
|
1999-07-02 21:30:31 +00:00
|
|
|
DEPTH = ../../..
|
1999-05-07 21:23:07 +00:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
1999-09-14 23:27:55 +00:00
|
|
|
VPATH = @srcdir@
|
1999-05-07 21:23:07 +00:00
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
1999-07-02 21:30:31 +00:00
|
|
|
MODULE = msgimap
|
|
|
|
LIBRARY_NAME = msgimap
|
2001-06-20 20:21:49 +00:00
|
|
|
META_COMPONENT = mail
|
2001-04-28 19:48:12 +00:00
|
|
|
EXPORT_LIBRARY = 1
|
1999-07-02 21:30:31 +00:00
|
|
|
IS_COMPONENT = 1
|
2001-06-20 20:21:49 +00:00
|
|
|
MODULE_NAME = IMAP_factory
|
2005-04-05 13:09:19 +00:00
|
|
|
MOZILLA_INTERNAL_API = 1
|
2004-01-07 13:37:00 +00:00
|
|
|
|
|
|
|
PACKAGE_FILE = msgimap.pkg
|
|
|
|
|
2001-09-18 13:41:47 +00:00
|
|
|
REQUIRES = xpcom \
|
2003-03-15 01:04:32 +00:00
|
|
|
xpcom_obsolete \
|
2001-09-18 13:41:47 +00:00
|
|
|
string \
|
|
|
|
mailnews \
|
|
|
|
msgbase \
|
|
|
|
msgbaseutil \
|
|
|
|
rdf \
|
|
|
|
rdfutil \
|
|
|
|
necko \
|
|
|
|
msgdb \
|
|
|
|
txmgr \
|
|
|
|
mime \
|
|
|
|
pref \
|
|
|
|
intl \
|
|
|
|
msglocal \
|
|
|
|
nkcache \
|
2002-03-06 01:44:07 +00:00
|
|
|
uriloader \
|
2001-09-18 13:41:47 +00:00
|
|
|
$(NULL)
|
1999-05-07 21:23:07 +00:00
|
|
|
|
2000-05-02 01:18:46 +00:00
|
|
|
ifeq ($(USE_SHORT_LIBNAME),1)
|
2001-01-18 15:35:00 +00:00
|
|
|
EXTRA_DSO_LIBS = msgbsutl
|
2000-05-02 01:18:46 +00:00
|
|
|
else
|
|
|
|
EXTRA_DSO_LIBS = msgbaseutil
|
|
|
|
endif
|
|
|
|
|
2001-12-18 09:14:29 +00:00
|
|
|
EXTRA_DSO_LIBS += rdfutil_s
|
|
|
|
|
1999-07-02 21:30:31 +00:00
|
|
|
CPPSRCS = nsImapFactory.cpp
|
1999-05-07 21:23:07 +00:00
|
|
|
|
1999-07-02 21:30:31 +00:00
|
|
|
SHARED_LIBRARY_LIBS = \
|
2001-12-14 23:49:04 +00:00
|
|
|
$(DIST)/lib/$(LIB_PREFIX)msgimap_s.$(LIB_SUFFIX) \
|
1999-07-27 23:27:44 +00:00
|
|
|
$(NULL)
|
1999-05-07 21:23:07 +00:00
|
|
|
|
1999-07-02 21:30:31 +00:00
|
|
|
EXTRA_DSO_LDOPTS = \
|
2001-12-18 09:14:29 +00:00
|
|
|
$(LIBS_DIR) \
|
2000-05-02 01:18:46 +00:00
|
|
|
$(EXTRA_DSO_LIBS) \
|
2001-10-22 20:44:02 +00:00
|
|
|
$(MOZ_UNICHARUTIL_LIBS) \
|
2001-12-18 09:14:29 +00:00
|
|
|
$(MOZ_COMPONENT_LIBS) \
|
2003-03-15 01:04:32 +00:00
|
|
|
$(MOZ_XPCOM_OBSOLETE_LIBS) \
|
1999-07-27 23:27:44 +00:00
|
|
|
$(NULL)
|
1999-05-07 21:23:07 +00:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|