~ubuntu-branches/ubuntu/oneiric/enigmail/oneiric-updates

« back to all changes in this revision

Viewing changes to extensions/enigmail/ipc/build/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2010-04-10 01:42:24 UTC
  • Revision ID: james.westby@ubuntu.com-20100410014224-fbq9ui5x3b0h2t36
Tags: 2:1.0.1-0ubuntu1
* First releaase of enigmail 1.0.1 for tbird/icedove 3
  (LP: #527138)
* redo packaging from scratch 
  + add debian/make-orig target that uses xulrunner provided
    buildsystem + enigmail tarball to produce a proper orig.tar.gz
  + use debhelper 7 with mozilla-devscripts
  + use debian source format 3.0 (quilt)
  + patch enigmail to use frozen API only
    - add debian/patches/frozen_api.diff
  + patch build system to not link against -lxul - which isnt
    available for sdks produced by all-static apps like tbird
    - add debian/patches/build_system_dont_link_libxul.diff
  + add minimal build-depends to control

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# The contents of this file are subject to the Mozilla Public
 
2
# License Version 1.1 (the "MPL"); you may not use this file
 
3
# except in compliance with the MPL. You may obtain a copy of
 
4
# the MPL at http://www.mozilla.org/MPL/
 
5
#
 
6
# Software distributed under the MPL is distributed on an "AS
 
7
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
8
# implied. See the MPL for the specific language governing
 
9
# rights and limitations under the MPL.
 
10
#
 
11
# The Original Code is protoZilla.
 
12
#
 
13
# The Initial Developer of the Original Code is Ramalingam Saravanan.
 
14
# Portions created by Ramalingam Saravanan <svn@xmlterm.org> are
 
15
# Copyright (C) 2001 Ramalingam Saravanan. All Rights Reserved.
 
16
#
 
17
# Contributor(s):
 
18
#
 
19
# Alternatively, the contents of this file may be used under the
 
20
# terms of the GNU General Public License (the "GPL"), in which case
 
21
# the provisions of the GPL are applicable instead of
 
22
# those above. If you wish to allow use of your version of this
 
23
# file only under the terms of the GPL and not to allow
 
24
# others to use your version of this file under the MPL, indicate
 
25
# your decision by deleting the provisions above and replace them
 
26
# with the notice and other provisions required by the GPL.
 
27
# If you do not delete the provisions above, a recipient
 
28
# may use your version of this file under either the MPL or the
 
29
# GPL.
 
30
#
 
31
 
 
32
DEPTH           = ../../../..
 
33
topsrcdir       = @top_srcdir@
 
34
srcdir          = @srcdir@
 
35
VPATH           = @srcdir@
 
36
 
 
37
include $(DEPTH)/config/autoconf.mk
 
38
 
 
39
XPI_MODULE      = ipc
 
40
XPI_MODULE_VERS = 1.2.1
 
41
 
 
42
MODULE          = ipc
 
43
LIBRARY_NAME    = ipc
 
44
SHORT_LIBNAME   = ipc
 
45
 
 
46
IS_COMPONENT    = 1
 
47
EXPORT_LIBRARY = 0
 
48
USE_STATIC_LIBS = 1
 
49
 
 
50
 
 
51
MOZILLA_VERSION_PARTS = $(subst ., ,$(MOZILLA_VERSION))
 
52
MOZILLA_MAJOR_VERSION = $(firstword $(MOZILLA_VERSION_PARTS))
 
53
TMP_VAR = $(word 2,$(MOZILLA_VERSION_PARTS))
 
54
MOZILLA_MINOR_VERSION = $(shell echo $(TMP_VAR)|sed 's/[a-z].*//')
 
55
 
 
56
DEFINES         += -DMOZILLA_MAJOR_VERSION=$(MOZILLA_MAJOR_VERSION)
 
57
DEFINES         += -DMOZILLA_MINOR_VERSION=$(MOZILLA_MINOR_VERSION)
 
58
 
 
59
 
 
60
ifdef USE_XPCOM_GLUE
 
61
# Ensure that the xpcom classes that we build
 
62
# do not export themselves
 
63
DEFINES         += -D_IMPL_NS_COM_OFF -DXPCOM_GLUE
 
64
endif
 
65
 
 
66
REQUIRES        = xpcom \
 
67
                  string \
 
68
                  js \
 
69
                  caps \
 
70
                  uconv \
 
71
                  necko \
 
72
                  mimetype \
 
73
                  xpconnect \
 
74
                  $(NULL)
 
75
 
 
76
MODULE_NAME     = IPCModule
 
77
 
 
78
CPPSRCS         = nsIPCModule.cpp
 
79
 
 
80
# hack to build non standard library dependent build on unix
 
81
ifeq ($(ENIGMAIL_STATIC),1)
 
82
BUILD_STATIC       = -nodefaultlibs -Xlinker --unresolved-symbols=ignore-all
 
83
else
 
84
BUILD_STATIC       =
 
85
endif
 
86
 
 
87
SHARED_LIBRARY_LIBS = \
 
88
                ../src/$(LIB_PREFIX)ipc_s.$(LIB_SUFFIX) \
 
89
                $(NULL)
 
90
 
 
91
LOCAL_INCLUDES  = \
 
92
                -I$(srcdir)/../src \
 
93
                $(NULL)
 
94
 
 
95
ifeq ($(OS_ARCH),WINNT)
 
96
    EXTRA_DSO_LDOPTS = \
 
97
      $(LIBS_DIR) \
 
98
      $(XPCOM_LIBS) \
 
99
      $(XPCOM_GLUE_LDOPTS) \
 
100
      $(NSPR_LIBS) \
 
101
      $(BUILD_STATIC) \
 
102
      $(NULL)
 
103
else
 
104
    EXTRA_DSO_LDOPTS = \
 
105
      $(LIBS_DIR) \
 
106
      $(XPCOM_GLUE_LDOPTS) \
 
107
      $(XPCOM_LIBS) \
 
108
      $(NSPR_LIBS) \
 
109
      $(BUILD_STATIC) \
 
110
      $(NULL)
 
111
endif
 
112
 
 
113
include $(topsrcdir)/config/rules.mk