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

« back to all changes in this revision

Viewing changes to netwerk/base/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
 
# vim:set ts=8 sw=8 sts=8 noet:
2
 
#
3
 
# This Source Code Form is subject to the terms of the Mozilla Public
4
 
# License, v. 2.0. If a copy of the MPL was not distributed with this
5
 
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
 
 
7
 
DEPTH           = @DEPTH@
8
 
topsrcdir       = @top_srcdir@
9
 
srcdir          = @srcdir@
10
 
VPATH           = @srcdir@
11
 
 
12
 
include $(DEPTH)/config/autoconf.mk
13
 
 
14
 
MODULE          = necko
15
 
LIBRARY_NAME    = neckobase_s
16
 
LIBXUL_LIBRARY  = 1
17
 
 
18
 
EXPORTS = \
19
 
                nsMIMEInputStream.h \
20
 
                nsURLHelper.h \
21
 
                $(NULL)
22
 
 
23
 
CPPSRCS         = \
24
 
                nsTransportUtils.cpp \
25
 
                nsAsyncStreamCopier.cpp \
26
 
                nsAsyncRedirectVerifyHelper.cpp \
27
 
                nsAuthInformationHolder.cpp \
28
 
                nsBaseChannel.cpp \
29
 
                nsBaseContentStream.cpp \
30
 
                nsBufferedStreams.cpp \
31
 
                nsChannelClassifier.cpp \
32
 
                nsDirectoryIndexStream.cpp \
33
 
                nsDownloader.cpp \
34
 
                nsFileStreams.cpp \
35
 
                nsIncrementalDownload.cpp \
36
 
                nsInputStreamChannel.cpp \
37
 
                nsInputStreamPump.cpp \
38
 
                nsStreamTransportService.cpp \
39
 
                nsIOService.cpp \
40
 
                nsLoadGroup.cpp \
41
 
                nsMIMEInputStream.cpp \
42
 
                nsProtocolProxyService.cpp \
43
 
                nsProxyInfo.cpp \
44
 
                nsPACMan.cpp \
45
 
                nsRequestObserverProxy.cpp \
46
 
                nsSimpleStreamListener.cpp \
47
 
                nsSimpleURI.cpp \
48
 
                nsSimpleNestedURI.cpp \
49
 
                nsStandardURL.cpp \
50
 
                nsSocketTransport2.cpp \
51
 
                nsSocketTransportService2.cpp \
52
 
                nsServerSocket.cpp \
53
 
                nsStreamListenerTee.cpp \
54
 
                nsStreamLoader.cpp \
55
 
                nsSyncStreamListener.cpp \
56
 
                nsUnicharStreamLoader.cpp \
57
 
                nsURIChecker.cpp \
58
 
                nsURLHelper.cpp \
59
 
                nsURLParsers.cpp \
60
 
                nsNetAddr.cpp \
61
 
                nsNetStrings.cpp \
62
 
                nsBase64Encoder.cpp \
63
 
                nsSerializationHelper.cpp \
64
 
                nsDNSPrefetch.cpp \
65
 
                RedirectChannelRegistrar.cpp \
66
 
                nsPreloadedStream.cpp \
67
 
                nsStreamListenerWrapper.cpp \
68
 
                $(NULL)
69
 
 
70
 
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
71
 
        CPPSRCS += nsURLHelperOS2.cpp
72
 
else
73
 
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
74
 
        CPPSRCS += nsURLHelperWin.cpp
75
 
        CPPSRCS += nsNativeConnectionHelper.cpp
76
 
        CPPSRCS += nsAutodialWin.cpp
77
 
else
78
 
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
79
 
        CPPSRCS += nsURLHelperOSX.cpp
80
 
else
81
 
        CPPSRCS += nsURLHelperUnix.cpp
82
 
endif
83
 
endif
84
 
endif
85
 
 
86
 
ifdef MOZ_PLATFORM_MAEMO
87
 
        CPPSRCS += nsNativeConnectionHelper.cpp
88
 
ifdef MOZ_ENABLE_LIBCONIC
89
 
        CPPSRCS += nsAutodialMaemo.cpp
90
 
        LOCAL_INCLUDES += -I$(srcdir)/../../system/maemo
91
 
endif
92
 
ifdef MOZ_ENABLE_QTNETWORK
93
 
        CPPSRCS += nsAutodialQt.cpp
94
 
        LOCAL_INCLUDES += -I$(srcdir)/../../system/qt
95
 
        OS_INCLUDES += $(MOZ_QT_CFLAGS)
96
 
endif
97
 
endif
98
 
 
99
 
EXTRA_COMPONENTS = \
100
 
                $(srcdir)/nsProxyAutoConfig.js \
101
 
                $(srcdir)/nsProxyAutoConfig.manifest \
102
 
                $(NULL)
103
 
 
104
 
EXTRA_JS_MODULES = \
105
 
                NetUtil.jsm \
106
 
                $(NULL)
107
 
 
108
 
# we don't want the shared lib, but we want to force the creation of a
109
 
# static lib.
110
 
FORCE_STATIC_LIB = 1
111
 
 
112
 
include $(topsrcdir)/config/config.mk
113
 
include $(topsrcdir)/ipc/chromium/chromium-config.mk
114
 
include $(topsrcdir)/config/rules.mk
115
 
 
116
 
ifeq ($(OS_TARGET),Android)
117
 
# this works around a "branch out of range" error when compiling this file opt
118
 
nsURLParsers.$(OBJ_SUFFIX): MOZ_OPTIMIZE_FLAGS=
119
 
endif
120
 
 
121
 
DEFINES += -DIMPL_NS_NET
122
 
 
123
 
ifdef MOZ_ENABLE_LIBCONIC
124
 
        OS_INCLUDES += $(GLIB_CFLAGS) $(LIBCONIC_CFLAGS)
125
 
endif