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

« back to all changes in this revision

Viewing changes to xpcom/ds/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          = xpcom
14
 
XPIDL_MODULE    = xpcom_ds
15
 
LIBRARY_NAME    = xpcomds_s
16
 
GRE_MODULE      = 1
17
 
MOZILLA_INTERNAL_API = 1
18
 
 
19
 
 
20
 
CPPSRCS         = \
21
 
                nsArray.cpp \
22
 
                nsAtomTable.cpp \
23
 
                nsAtomService.cpp \
24
 
                nsByteBuffer.cpp \
25
 
                nsCRT.cpp \
26
 
                nsFixedSizeAllocator.cpp \
27
 
                nsHashPropertyBag.cpp \
28
 
                nsHashtable.cpp \
29
 
                nsINIParserImpl.cpp \
30
 
                nsObserverList.cpp \
31
 
                nsObserverService.cpp \
32
 
                nsProperties.cpp \
33
 
                nsPersistentProperties.cpp \
34
 
                nsStaticNameTable.cpp \
35
 
                nsStringEnumerator.cpp \
36
 
                nsSupportsArray.cpp \
37
 
                nsSupportsArrayEnumerator.cpp \
38
 
                nsSupportsPrimitives.cpp \
39
 
                nsUnicharBuffer.cpp \
40
 
                nsVariant.cpp \
41
 
                $(NULL)
42
 
 
43
 
ifdef HAVE_CLOCK_MONOTONIC
44
 
CPPSRCS += TimeStamp_posix.cpp
45
 
else ifeq ($(OS_ARCH),Darwin)
46
 
CPPSRCS += TimeStamp_darwin.cpp
47
 
else ifeq ($(OS_ARCH),WINNT)
48
 
CPPSRCS += TimeStamp_windows.cpp
49
 
else
50
 
$(error No TimeStamp implementation on this platform.  Build will not succeed)
51
 
endif
52
 
 
53
 
EXPORTS_NAMESPACES = mozilla
54
 
 
55
 
EXPORTS_mozilla = \
56
 
  CharTokenizer.h \
57
 
  TimeStamp.h \
58
 
  StringBuilder.h \
59
 
  $(NULL)
60
 
 
61
 
EXPORTS         = \
62
 
                nsAtomService.h \
63
 
                nsCheapSets.h \
64
 
                nsCppSharedAllocator.h \
65
 
                nsCRT.h \
66
 
                nsExpirationTracker.h \
67
 
                nsFixedSizeAllocator.h \
68
 
                nsHashtable.h \
69
 
                nsIByteBuffer.h \
70
 
                nsIUnicharBuffer.h \
71
 
                nsMathUtils.h \
72
 
                nsObserverList.h \
73
 
                nsObserverService.h \
74
 
                nsStaticNameTable.h \
75
 
                nsStaticAtom.h \
76
 
                nsSupportsArray.h \
77
 
                nsSupportsPrimitives.h \
78
 
                nsVariant.h \
79
 
                nsStringEnumerator.h \
80
 
                nsHashPropertyBag.h \
81
 
                nsWhitespaceTokenizer.h \
82
 
                nsCharSeparatedTokenizer.h \
83
 
                $(NULL)                 
84
 
 
85
 
XPIDLSRCS       = \
86
 
                nsIAtom.idl \
87
 
                nsIAtomService.idl \
88
 
                nsICollection.idl \
89
 
                nsIEnumerator.idl \
90
 
                nsIINIParser.idl \
91
 
                nsIPersistentProperties2.idl \
92
 
                nsIProperty.idl \
93
 
                nsIPropertyBag.idl \
94
 
                nsIPropertyBag2.idl \
95
 
                nsIWritablePropertyBag.idl \
96
 
                nsIWritablePropertyBag2.idl \
97
 
                nsIVariant.idl \
98
 
                nsISerializable.idl \
99
 
                nsIStringEnumerator.idl \
100
 
                nsISupportsArray.idl \
101
 
                nsISupportsIterators.idl \
102
 
                $(NULL)
103
 
 
104
 
SDK_XPIDLSRCS   = \
105
 
                nsIArray.idl               \
106
 
                nsIHashable.idl            \
107
 
                nsIMutableArray.idl        \
108
 
                nsIObserverService.idl     \
109
 
                nsIObserver.idl            \
110
 
                nsIProperties.idl          \
111
 
                nsISimpleEnumerator.idl    \
112
 
                nsISupportsPrimitives.idl  \
113
 
                $(NULL)
114
 
 
115
 
ifeq ($(OS_ARCH),WINNT)
116
 
CPPSRCS += nsWindowsRegKey.cpp
117
 
XPIDLSRCS += nsIWindowsRegKey.idl
118
 
EXPORTS += nsWindowsRegKey.h
119
 
endif
120
 
 
121
 
EXTRA_COMPONENTS = \
122
 
  nsINIProcessor.js \
123
 
  nsINIProcessor.manifest \
124
 
  $(NULL)
125
 
 
126
 
# we don't want the shared lib, but we want to force the creation of a static lib.
127
 
FORCE_STATIC_LIB = 1
128
 
 
129
 
 
130
 
include $(topsrcdir)/config/rules.mk
131
 
 
132
 
LOCAL_INCLUDES += -I$(srcdir)/../io
133
 
 
134
 
DEFINES         += -D_IMPL_NS_COM