~ubuntu-branches/ubuntu/precise/lightning-extension/precise-security

« back to all changes in this revision

Viewing changes to mailnews/base/src/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-11-08 10:00:06 UTC
  • mfrom: (1.3.8)
  • Revision ID: package-import@ubuntu.com-20121108100006-5u86nbolqjem85q5
Tags: 1.9+build1-0ubuntu0.12.04.1
* New upstream stable release to support Thunderbird 17 (CALENDAR_1_9_BUILD1)
  - see LP: #1080212 for USN information

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# This Source Code Form is subject to the terms of the Mozilla Public
 
3
# License, v. 2.0. If a copy of the MPL was not distributed with this
 
4
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
5
 
 
6
DEPTH           = @DEPTH@
 
7
topsrcdir       = @top_srcdir@
 
8
srcdir          = @srcdir@
 
9
VPATH           = @srcdir@
 
10
 
 
11
include $(DEPTH)/config/autoconf.mk
 
12
 
 
13
MODULE          = msgbase
 
14
LIBRARY_NAME    = msgbase_s
 
15
ifndef MOZ_INCOMPLETE_EXTERNAL_LINKAGE
 
16
MOZILLA_INTERNAL_API = 1
 
17
LIBXUL_LIBRARY = 1
 
18
endif
 
19
 
 
20
CPPSRCS         = \
 
21
                nsMessenger.cpp \
 
22
                nsMessengerBootstrap.cpp \
 
23
                nsMsgMailSession.cpp \
 
24
                nsMsgAccountManager.cpp \
 
25
                nsMsgAccount.cpp \
 
26
                nsCopyMessageStreamListener.cpp \
 
27
                nsMsgRDFDataSource.cpp \
 
28
                nsMsgFolderDataSource.cpp \
 
29
                nsMsgAccountManagerDS.cpp \
 
30
                nsMsgRDFUtils.cpp \
 
31
                nsMsgBiffManager.cpp \
 
32
                nsMsgPurgeService.cpp \
 
33
                nsMsgCopyService.cpp \
 
34
                nsMsgFolderCache.cpp \
 
35
                nsMsgFolderCacheElement.cpp \
 
36
                nsMsgFolderCompactor.cpp \
 
37
                nsMsgStatusFeedback.cpp \
 
38
                nsMsgWindow.cpp \
 
39
                nsMsgServiceProvider.cpp \
 
40
                nsSubscribeDataSource.cpp \
 
41
                nsSubscribableServer.cpp \
 
42
                nsStatusBarBiffManager.cpp \
 
43
                nsMsgDBView.cpp \
 
44
                nsMsgThreadedDBView.cpp \
 
45
                nsMsgSpecialViews.cpp \
 
46
                nsMsgQuickSearchDBView.cpp \
 
47
                nsMsgSearchDBView.cpp \
 
48
                nsMsgXFVirtualFolderDBView.cpp \
 
49
                nsMsgXFViewThread.cpp \
 
50
                nsMsgGroupThread.cpp \
 
51
                nsMsgGroupView.cpp \
 
52
                nsMsgOfflineManager.cpp \
 
53
                nsMsgProgress.cpp \
 
54
                nsMessengerContentHandler.cpp \
 
55
                nsSpamSettings.cpp \
 
56
                nsCidProtocolHandler.cpp \
 
57
                nsMsgContentPolicy.cpp \
 
58
                nsMsgTagService.cpp\
 
59
                nsMsgFolderNotificationService.cpp\
 
60
                nsMailDirProvider.cpp\
 
61
                MailNewsDLF.cpp \
 
62
                $(NULL)
 
63
 
 
64
ifdef NS_PRINTING
 
65
CPPSRCS += nsMsgPrintEngine.cpp
 
66
endif
 
67
 
 
68
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
 
69
CMMSRCS = nsMessengerOSXIntegration.mm
 
70
endif
 
71
 
 
72
ifeq ($(OS_ARCH),WINNT)
 
73
CPPSRCS         += nsMessengerWinIntegration.cpp 
 
74
endif
 
75
 
 
76
ifeq ($(OS_ARCH),OS2)
 
77
CPPSRCS         += nsMessengerOS2Integration.cpp 
 
78
endif
 
79
 
 
80
ifneq (,$(filter $(MOZ_WIDGET_TOOLKIT),gtk gtk2))
 
81
CPPSRCS         += nsMessengerUnixIntegration.cpp 
 
82
endif
 
83
 
 
84
ifdef MOZ_LDAP_XPCOM
 
85
DEFINES         += -DMOZ_LDAP_XPCOM
 
86
endif
 
87
 
 
88
EXPORTS = \
 
89
                nsMsgRDFDataSource.h \
 
90
                nsMsgRDFUtils.h \
 
91
                nsMailDirServiceDefs.h \
 
92
                $(NULL)
 
93
 
 
94
EXTRA_COMPONENTS = \
 
95
                nsMailNewsCommandLineHandler.js \
 
96
                msgAsyncPrompter.js \
 
97
                newMailNotificationService.js \
 
98
                msgBase.manifest \
 
99
                $(NULL)
 
100
 
 
101
EXTRA_JS_MODULES = \
 
102
                virtualFolderWrapper.js \
 
103
                $(NULL)
 
104
 
 
105
# we don't want the shared lib, but we want to force the creation of a static lib.
 
106
FORCE_STATIC_LIB = 1
 
107
 
 
108
include $(topsrcdir)/config/rules.mk
 
109
 
 
110
ifdef MOZ_MOVEMAIL
 
111
DEFINES += -DHAVE_MOVEMAIL
 
112
endif
 
113