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

« back to all changes in this revision

Viewing changes to gfx/ots/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
 
# Copyright (C) 2010  Mozilla Foundation
3
 
#
4
 
#  This is used to integrate the OTS library with the Mozilla build.
5
 
#
6
 
# Permission is hereby granted, without written agreement and without
7
 
# license or royalty fees, to use, copy, modify, and distribute this
8
 
# software and its documentation for any purpose, provided that the
9
 
# above copyright notice and the following two paragraphs appear in
10
 
# all copies of this software.
11
 
#
12
 
# IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
13
 
# DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14
 
# ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
15
 
# IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
16
 
# DAMAGE.
17
 
#
18
 
# THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
19
 
# BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20
 
# FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
21
 
# ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
22
 
# PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
23
 
#
24
 
# Mozilla author(s): Jonathan Kew
25
 
#
26
 
 
27
 
 
28
 
DEPTH     = @DEPTH@
29
 
topsrcdir = @top_srcdir@
30
 
srcdir    = @srcdir@
31
 
VPATH     = @srcdir@
32
 
 
33
 
include $(DEPTH)/config/autoconf.mk
34
 
 
35
 
MODULE         = ots
36
 
LIBRARY_NAME   = mozots
37
 
FORCE_STATIC_LIB = 1
38
 
 
39
 
ifeq (WINNT,$(OS_TARGET))
40
 
VISIBILITY_FLAGS =
41
 
else
42
 
LIBXUL_LIBRARY = 1
43
 
endif
44
 
 
45
 
CSRCS =   \
46
 
  $(NULL)
47
 
 
48
 
CPPSRCS = \
49
 
  cff.cc  \
50
 
  cff_type2_charstring.cc \
51
 
  cmap.cc \
52
 
  cvt.cc  \
53
 
  fpgm.cc \
54
 
  gasp.cc \
55
 
  glyf.cc \
56
 
  hdmx.cc \
57
 
  head.cc \
58
 
  hhea.cc \
59
 
  hmtx.cc \
60
 
  kern.cc \
61
 
  layout.cc \
62
 
  loca.cc \
63
 
  ltsh.cc \
64
 
  maxp.cc \
65
 
  metrics.cc \
66
 
  name.cc \
67
 
  os2.cc  \
68
 
  ots.cc  \
69
 
  post.cc \
70
 
  prep.cc \
71
 
  vdmx.cc \
72
 
  vhea.cc \
73
 
  vmtx.cc \
74
 
  vorg.cc \
75
 
  gdef.cc \
76
 
  gpos.cc \
77
 
  gsub.cc \
78
 
  graphite.cc \
79
 
  $(NULL)
80
 
 
81
 
EXPORTS = \
82
 
  ../include/opentype-sanitiser.h \
83
 
  ../include/ots-memory-stream.h  \
84
 
  $(NULL)
85
 
 
86
 
include $(topsrcdir)/config/rules.mk
87
 
 
88
 
DEFINES += -DPACKAGE_VERSION="\"moz\""
89
 
DEFINES += -DPACKAGE_BUGREPORT="\"http://bugzilla.mozilla.org/\""
90
 
DEFINES += -DNOMINMAX
91
 
DEFINES += -DMOZ_OTS_REPORT_ERRORS
92
 
 
93
 
ifeq (WINNT,$(OS_TARGET))
94
 
DEFINES += -DOTS_DLL -DOTS_DLL_EXPORTS
95
 
endif
96
 
 
97
 
# Suppress ANSI strict warnings
98
 
# because Googlers don't care about comma-at-end-of-enumerator errors.
99
 
CXXFLAGS := $(filter-out -pedantic,$(CXXFLAGS))
100
 
CFLAGS := $(filter-out -pedantic,$(CFLAGS))
101