~ubuntu-branches/ubuntu/quantal/enigmail/quantal-security

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2013-09-13 16:02:15 UTC
  • mfrom: (0.12.16)
  • Revision ID: package-import@ubuntu.com-20130913160215-u3g8nmwa0pdwagwc
Tags: 2:1.5.2-0ubuntu0.12.10.1
* New upstream release v1.5.2 for Thunderbird 24

* Build enigmail using a stripped down Thunderbird 17 build system, as it's
  now quite difficult to build the way we were doing previously, with the
  latest Firefox build system
* Add debian/patches/no_libxpcom.patch - Don't link against libxpcom, as it
  doesn't exist anymore (but exists in the build system)
* Add debian/patches/use_sdk.patch - Use the SDK version of xpt.py and
  friends
* Drop debian/patches/ipc-pipe_rename.diff (not needed anymore)
* Drop debian/patches/makefile_depth.diff (not needed anymore)

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          = msgbaseutil
 
14
LIBRARY_NAME    = msgbsutl_s
 
15
ifndef MOZ_INCOMPLETE_EXTERNAL_LINKAGE
 
16
MOZILLA_INTERNAL_API = 1
 
17
LIBXUL_LIBRARY = 1
 
18
endif
 
19
 
 
20
CPPSRCS         = \
 
21
                nsMsgLineBuffer.cpp \
 
22
                nsMsgDBFolder.cpp \
 
23
                nsMsgKeyArray.cpp \
 
24
                nsMsgKeySet.cpp \
 
25
                nsMsgIdentity.cpp \
 
26
                nsMsgIncomingServer.cpp \
 
27
                nsMsgUtils.cpp \
 
28
                nsMsgProtocol.cpp \
 
29
                nsMsgMailNewsUrl.cpp \
 
30
                nsMsgTxn.cpp \
 
31
                nsMsgI18N.cpp \
 
32
                nsImapMoveCoalescer.cpp \
 
33
                nsMsgFileStream.cpp \
 
34
                nsMsgCompressIStream.cpp \
 
35
                nsMsgCompressOStream.cpp \
 
36
                nsMsgReadStateTxn.cpp \
 
37
                nsStopwatch.cpp \
 
38
                $(NULL)
 
39
 
 
40
EXPORTS         = \
 
41
                nsMsgLineBuffer.h \
 
42
                nsMsgKeyArray.h \
 
43
                nsMsgKeySet.h \
 
44
                nsMsgDBFolder.h \
 
45
                nsMsgDBFolderAtomList.h \
 
46
                nsMsgIdentity.h \
 
47
                nsMsgIncomingServer.h \
 
48
                nsMsgUtils.h \
 
49
                nsMsgProtocol.h \
 
50
                nsMsgMailNewsUrl.h \
 
51
                nsMsgCompressIStream.h \
 
52
                nsMsgCompressOStream.h \
 
53
                nsMsgTxn.h \
 
54
                nsMsgI18N.h \
 
55
                nsImapMoveCoalescer.h \
 
56
                nsMsgReadStateTxn.h \
 
57
                $(NULL)
 
58
 
 
59
EXTRA_JS_MODULES = \
 
60
                folderUtils.jsm \
 
61
                errUtils.js \
 
62
                iteratorUtils.jsm \
 
63
                jsTreeSelection.js \
 
64
                traceHelper.js \
 
65
                StringBundle.js \
 
66
                templateUtils.js \
 
67
                IOUtils.js \
 
68
                mailnewsMigrator.js \
 
69
                mailServices.js \
 
70
                msgDBCacheManager.js \
 
71
                $(NULL)
 
72
 
 
73
# we don't want the shared lib, but we want to force the creation of a static lib.
 
74
FORCE_STATIC_LIB = 1
 
75
 
 
76
DEFINES         += -D_IMPL_NS_MSG_BASE
 
77
 
 
78
ifeq ($(OS_ARCH),WINNT)
 
79
DEFINES         += -DZLIB_DLL
 
80
endif
 
81
 
 
82
include $(topsrcdir)/config/rules.mk
 
83