Commit 91438fc1 91438fc10ba567e7ef76c75f72d4e87510c10c28 by Sergey Poznyakoff

Document --with-berkeley-db option

1 parent 2f9b173d
Showing 1 changed file with 38 additions and 23 deletions
...@@ -189,29 +189,6 @@ specific configuration options: ...@@ -189,29 +189,6 @@ specific configuration options:
189 a better average distribution than the `index' 189 a better average distribution than the `index'
190 method. 190 method.
191 191
192 If you wish to use APOP authentication in POP3 daemon, you will have
193 to enable DBM support in Mailutils. To do so, use one of the following
194 options:
195
196 --with-gdbm
197
198 Use GNU DBM
199
200 --with-db2
201
202 Use Berkeley DB
203
204 --with-ndbm
205
206 Use NDBM
207
208 --with-dbm
209
210 Use old DBM
211
212 Only one dbm option may be specified. Which one depends on the flavor
213 of DBM you are using. GDBM is most common for GNU system.
214
215 --with-log-facility=facility 192 --with-log-facility=facility
216 193
217 Enable logging to the given syslog facility. Default is `mail'. 194 Enable logging to the given syslog facility. Default is `mail'.
...@@ -235,6 +212,44 @@ options: ...@@ -235,6 +212,44 @@ options:
235 one from your libc. You will need this option if the libc library 212 one from your libc. You will need this option if the libc library
236 on your system was compiled without NLS support. 213 on your system was compiled without NLS support.
237 214
215 The following options enable DBM support in Mailutils. DBM support is
216 necessary if you wish to use APOP authentication in POP3 daemon or to
217 use DBM-based mail box quotas with mail.local.
218
219 --with-gdbm
220
221 Use GNU DBM
222
223 --with-berkeley-db[=ARG]
224
225 Use Berkeley DB. If ARG is not specified, configure will
226 attempt to autodetect the database version to use. Unless ARG
227 begins with a digit, it is taken as a library name, without
228 the `lib' prefix and library type suffix, so that specifying
229
230 --with-berkeley-db=db-3.1
231
232 instructs configure to use library libdb-3.1.so (or
233 libdb-3.1.a).
234 Otherwise, if ARG begins with a digit, it is understood as a
235 library version number to link to. In this case configure
236 assumes a Slackware-like installation layout. Thus, using
237
238 --with-berkeley-db=3.1
239
240 tells configure to use library libdb-3.1.so (or libdb-3.1.a)
241 and header file /usr/include/db31/db.h
242
243 --with-ndbm
244
245 Use NDBM
246
247 --with-dbm
248
249 Use old DBM
250
251 Only one dbm option may be specified. Which one depends on the flavor
252 of DBM you are using. GDBM is most common for GNU system.
238 253
239 Use following options to disable support for particular protocols or 254 Use following options to disable support for particular protocols or
240 features: 255 features:
......