~ubuntu-branches/ubuntu/precise/enigmail/precise-security

« back to all changes in this revision

Viewing changes to storage/public/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-11-12 16:36:01 UTC
  • mfrom: (0.12.15)
  • Revision ID: package-import@ubuntu.com-20121112163601-t8e8skdfi3ni9iqp
Tags: 2:1.4.6-0ubuntu0.12.04.1
* New upstream release v1.4.6
  - see LP: #1080212 for USN information
* Drop unneeded patches
  - remove debian/patches/correct-version-number.diff
  - remove debian/patches/dont_register_cids_multiple_times.diff
  - update debian/patches/series
* Support building in an objdir
  - update debian/rules

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       = storage
 
14
XPIDL_MODULE = storage
 
15
GRE_MODULE   = 1
 
16
 
 
17
# NOTE When adding something to this list, you probably need to add it to the
 
18
#      storage.h file too.
 
19
XPIDLSRCS = \
 
20
        mozIStorageService.idl \
 
21
        mozIStorageConnection.idl \
 
22
        mozIStorageAggregateFunction.idl \
 
23
        mozIStorageFunction.idl \
 
24
        mozIStorageProgressHandler.idl \
 
25
        mozIStorageStatement.idl \
 
26
        mozIStorageValueArray.idl \
 
27
        mozIStorageResultSet.idl \
 
28
        mozIStorageRow.idl \
 
29
  mozIStorageError.idl \
 
30
  mozIStorageStatementParams.idl \
 
31
  mozIStorageStatementRow.idl \
 
32
  mozIStorageStatementCallback.idl \
 
33
  mozIStoragePendingStatement.idl \
 
34
  mozIStorageBindingParamsArray.idl \
 
35
  mozIStorageBindingParams.idl \
 
36
  mozIStorageCompletionCallback.idl \
 
37
  mozIStorageBaseStatement.idl \
 
38
  mozIStorageAsyncStatement.idl \
 
39
  mozIStorageServiceQuotaManagement.idl \
 
40
  mozIStorageVacuumParticipant.idl \
 
41
        $(NULL)
 
42
# SEE ABOVE NOTE!
 
43
 
 
44
EXPORTS_NAMESPACES = mozilla mozilla/storage
 
45
 
 
46
EXPORTS = \
 
47
        mozStorageHelper.h \
 
48
        $(NULL)
 
49
 
 
50
EXPORTS_mozilla = storage.h
 
51
 
 
52
# NOTE When adding something to this list, you probably need to add it to the
 
53
#      storage.h file too.
 
54
EXPORTS_mozilla/storage = \
 
55
  StatementCache.h \
 
56
  $(NULL)
 
57
# SEE ABOVE NOTE!
 
58
 
 
59
include $(topsrcdir)/config/rules.mk