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

« back to all changes in this revision

Viewing changes to mailnews/mime/src/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
ifdef MOZ_PSM
 
14
BUILD_SMIME=1
 
15
endif
 
16
 
 
17
ifdef BUILD_SMIME
 
18
DEFINES         += -DENABLE_SMIME
 
19
endif
 
20
 
 
21
MODULE          = mime
 
22
LIBRARY_NAME    = mime_s
 
23
ifndef MOZ_INCOMPLETE_EXTERNAL_LINKAGE
 
24
MOZILLA_INTERNAL_API = 1
 
25
LIBXUL_LIBRARY = 1
 
26
endif
 
27
 
 
28
CPPSRCS         = \
 
29
                nsMimeObjectClassAccess.cpp \
 
30
                nsMimeConverter.cpp \
 
31
                nsSimpleMimeConverterStub.cpp \
 
32
                mimecont.cpp \
 
33
                mimeebod.cpp \
 
34
                mimeenc.cpp \
 
35
                mimeeobj.cpp \
 
36
                mimehdrs.cpp \
 
37
                mimei.cpp \
 
38
                mimeiimg.cpp \
 
39
                mimeleaf.cpp \
 
40
                mimemalt.cpp \
 
41
                mimemapl.cpp \
 
42
                mimemdig.cpp \
 
43
                mimemmix.cpp \
 
44
                mimempar.cpp \
 
45
                mimemrel.cpp \
 
46
                mimemsg.cpp \
 
47
                mimemsig.cpp \
 
48
                mimemult.cpp \
 
49
                mimeobj.cpp \
 
50
                mimepbuf.cpp \
 
51
                mimesun.cpp \
 
52
                mimetenr.cpp \
 
53
                mimetext.cpp \
 
54
                mimethtm.cpp \
 
55
                mimethpl.cpp \
 
56
                mimethsa.cpp \
 
57
                mimetpla.cpp \
 
58
                mimetpfl.cpp \
 
59
                mimetric.cpp \
 
60
                mimeunty.cpp \
 
61
                mimecth.cpp \
 
62
                mimebuf.cpp \
 
63
                mimecom.cpp \
 
64
                mimemoz2.cpp \
 
65
                comi18n.cpp \
 
66
                nsMsgHeaderParser.cpp \
 
67
                nsStreamConverter.cpp \
 
68
                mimedrft.cpp \
 
69
                nsMimeHeaders.cpp \
 
70
                mimecryp.cpp
 
71
 
 
72
ifdef BUILD_SMIME
 
73
CPPSRCS += \
 
74
                mimecms.cpp \
 
75
                mimemcms.cpp
 
76
endif
 
77
 
 
78
EXPORTS         = \
 
79
                nsMimeStringResources.h \
 
80
                nsStreamConverter.h \
 
81
                mimecryp.h \
 
82
                mimemoz2.h \
 
83
                mimetext.h \
 
84
                mimeleaf.h \
 
85
                mimecth.h \
 
86
                mimeobj.h \
 
87
                mimei.h \
 
88
                modmimee.h \
 
89
                mimecont.h \
 
90
                mimemult.h \
 
91
                mimemsig.h \
 
92
                mimehdrs.h \
 
93
                mimepbuf.h \
 
94
                modlmime.h \
 
95
                comi18n.h \
 
96
                $(NULL)
 
97
 
 
98
FORCE_STATIC_LIB = 1
 
99
 
 
100
include $(topsrcdir)/config/rules.mk
 
101
 
 
102