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

« back to all changes in this revision

Viewing changes to xpcom/components/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_components
15
 
LIBRARY_NAME    = xpcomcomponents_s
16
 
GRE_MODULE      = 1
17
 
LIBXUL_LIBRARY = 1
18
 
MOZILLA_INTERNAL_API = 1
19
 
 
20
 
EXPORTS_NAMESPACES = mozilla
21
 
 
22
 
EXPORTS = \
23
 
  nsCategoryManagerUtils.h \
24
 
  $(NULL)
25
 
 
26
 
EXPORTS_mozilla = \
27
 
  Module.h \
28
 
  ModuleLoader.h \
29
 
  ModuleUtils.h \
30
 
  $(NULL)
31
 
 
32
 
CPPSRCS         = \
33
 
                nsCategoryManager.cpp \
34
 
                nsComponentManager.cpp \
35
 
                ManifestParser.cpp \
36
 
                nsNativeComponentLoader.cpp \
37
 
                $(NULL)
38
 
 
39
 
SDK_XPIDLSRCS   = \
40
 
                nsIClassInfo.idl              \
41
 
                nsIComponentRegistrar.idl     \
42
 
                nsIFactory.idl                \
43
 
                nsIModule.idl                 \
44
 
                nsIServiceManager.idl         \
45
 
                nsIComponentManager.idl       \
46
 
                nsICategoryManager.idl        \
47
 
                $(NULL)
48
 
 
49
 
LOCAL_INCLUDES  = \
50
 
        -I$(srcdir)/../reflect/xptinfo/src \
51
 
        -I$(srcdir)/../base \
52
 
        -I$(srcdir)/../ds \
53
 
        -I$(srcdir)/../build \
54
 
        -I.. \
55
 
        -I$(topsrcdir)/chrome/src \
56
 
        -I$(topsrcdir)/modules/libjar \
57
 
        $(NULL)
58
 
 
59
 
# we don't want the shared lib, but we want to force the creation of a static lib.
60
 
FORCE_STATIC_LIB = 1
61
 
 
62
 
include $(topsrcdir)/config/rules.mk
63
 
 
64
 
DEFINES += -D_IMPL_NS_COM
65
 
 
66
 
ifneq (,$(filter gtk2,$(MOZ_WIDGET_TOOLKIT)))
67
 
CXXFLAGS += $(MOZ_GTK2_CFLAGS)
68
 
endif