~ubuntu-branches/ubuntu/wily/dovecot/wily-proposed

« back to all changes in this revision

Viewing changes to src/lib/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2008-08-02 14:00:15 UTC
  • mto: (1.11.1 upstream) (4.2.1 sid)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: james.westby@ubuntu.com-20080802140015-zbmjsgoodeyc9z4s
Tags: upstream-1.1.2
ImportĀ upstreamĀ versionĀ 1.1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
noinst_LIBRARIES = liblib.a
2
2
 
 
3
BUILT_SOURCES = unicodemap.c
 
4
 
 
5
EXTRA_DIST = unicodemap.c unicodemap.pl
 
6
 
 
7
$(srcdir)/unicodemap.c:
 
8
        test -f UnicodeData.txt || wget http://www.unicode.org/Public/UNIDATA/UnicodeData.txt
 
9
        perl $(srcdir)/unicodemap.pl < UnicodeData.txt > $@
 
10
 
3
11
liblib_a_SOURCES = \
 
12
        array.c \
 
13
        aqueue.c \
4
14
        backtrace-string.c \
5
15
        base64.c \
6
16
        bsearch-insert-pos.c \
7
17
        buffer.c \
8
18
        close-keep-errno.c \
9
19
        compat.c \
 
20
        crc32.c \
10
21
        data-stack.c \
11
22
        env-util.c \
12
23
        failures.c \
13
24
        fd-close-on-exec.c \
14
25
        fd-set-nonblock.c \
 
26
        fdatasync-path.c \
15
27
        fdpass.c \
16
28
        file-cache.c \
17
29
        file-copy.c \
27
39
        imem.c \
28
40
        iostream.c \
29
41
        istream.c \
 
42
        istream-concat.c \
 
43
        istream-crlf.c \
30
44
        istream-data.c \
31
45
        istream-file.c \
32
46
        istream-limit.c \
33
47
        istream-mmap.c \
34
48
        istream-seekable.c \
 
49
        istream-tee.c \
35
50
        ioloop.c \
36
51
        ioloop-iolist.c \
37
52
        ioloop-notify-none.c \
 
53
        ioloop-notify-fd.c \
38
54
        ioloop-notify-dn.c \
39
55
        ioloop-notify-inotify.c \
40
56
        ioloop-notify-kqueue.c \
50
66
        mempool-alloconly.c \
51
67
        mempool-datastack.c \
52
68
        mempool-system.c \
 
69
        mempool-system-clean.c \
53
70
        mempool-unsafe-datastack.c \
54
71
        mkdir-parents.c \
55
72
        mmap-anon.c \
60
77
        nfs-workarounds.c \
61
78
        ostream.c \
62
79
        ostream-file.c \
63
 
        ostream-crlf.c \
64
80
        primes.c \
65
 
        printf-upper-bound.c \
 
81
        printf-format-fix.c \
66
82
        process-title.c \
 
83
        priorityq.c \
67
84
        randgen.c \
68
85
        read-full.c \
69
86
        restrict-access.c \
70
87
        restrict-process-size.c \
71
88
        safe-memset.c \
72
89
        safe-mkdir.c \
 
90
        safe-mkstemp.c \
73
91
        sendfile-util.c \
74
92
        seq-range-array.c \
75
93
        sha1.c \
 
94
        sha2.c \
76
95
        str.c \
 
96
        str-find.c \
77
97
        str-sanitize.c \
78
98
        strescape.c \
79
99
        strfuncs.c \
80
100
        unix-socket-create.c \
81
101
        unlink-directory.c \
82
 
        unlink-lockfiles.c \
 
102
        unlink-old-files.c \
 
103
        unichar.c \
83
104
        utc-offset.c \
84
105
        utc-mktime.c \
85
106
        var-expand.c \
86
107
        write-full.c
87
108
 
88
109
headers = \
 
110
        aqueue.h \
89
111
        array.h \
90
112
        array-decl.h \
91
113
        backtrace-string.h \
94
116
        buffer.h \
95
117
        close-keep-errno.h \
96
118
        compat.h \
 
119
        crc32.h \
97
120
        data-stack.h \
98
121
        env-util.h \
99
122
        failures.h \
100
123
        fd-close-on-exec.h \
101
124
        fd-set-nonblock.h \
 
125
        fdatasync-path.h \
102
126
        fdpass.h \
103
127
        file-cache.h \
104
128
        file-copy.h \
114
138
        imem.h \
115
139
        iostream-internal.h \
116
140
        istream.h \
 
141
        istream-concat.h \
 
142
        istream-crlf.h \
117
143
        istream-internal.h \
118
144
        istream-seekable.h \
 
145
        istream-tee.h \
119
146
        ioloop.h \
120
147
        ioloop-iolist.h \
121
148
        ioloop-internal.h \
 
149
        ioloop-notify-fd.h \
122
150
        lib.h \
123
151
        lib-signals.h \
 
152
        llist.h \
124
153
        macros.h \
125
154
        md4.h \
126
155
        md5.h \
127
156
        mempool.h \
128
157
        mkdir-parents.h \
129
158
        mmap-util.h \
 
159
        module-context.h \
130
160
        module-dir.h \
131
161
        mountpoint.h \
132
162
        network.h \
133
163
        nfs-workarounds.h \
134
164
        ostream.h \
135
 
        ostream-crlf.h \
136
165
        ostream-internal.h \
137
166
        primes.h \
138
 
        printf-upper-bound.h \
 
167
        printf-format-fix.h \
139
168
        process-title.h \
 
169
        priorityq.h \
140
170
        randgen.h \
141
171
        read-full.h \
142
172
        restrict-access.h \
143
173
        restrict-process-size.h \
144
174
        safe-memset.h \
145
175
        safe-mkdir.h \
 
176
        safe-mkstemp.h \
146
177
        sendfile-util.h \
147
178
        seq-range-array.h \
148
179
        sha1.h \
 
180
        sha2.h \
149
181
        str.h \
 
182
        str-find.h \
150
183
        str-sanitize.h \
151
184
        strescape.h \
152
185
        strfuncs.h \
153
186
        unix-socket-create.h \
154
187
        unlink-directory.h \
155
 
        unlink-lockfiles.h \
 
188
        unlink-old-files.h \
 
189
        unichar.h \
156
190
        utc-offset.h \
157
191
        utc-mktime.h \
158
192
        var-expand.h \