|
Revision 5563:a2b55a15d6f0, 1.0 kB
(checked in by TAKAHASHI Tamotsu <ttakah@…>, 3 days ago)
|
|
Add --disable-full-doc flag to only build documentation for enabled features
|
| Line | |
|---|
| 1 | /* build complete documentation */ |
|---|
| 2 | |
|---|
| 3 | #ifdef MAKEDOC_FULL |
|---|
| 4 | # ifndef CRYPT_BACKEND_GPGME |
|---|
| 5 | # define CRYPT_BACKEND_GPGME |
|---|
| 6 | # endif |
|---|
| 7 | # ifndef USE_IMAP |
|---|
| 8 | # define USE_IMAP |
|---|
| 9 | # endif |
|---|
| 10 | # ifndef MIXMASTER |
|---|
| 11 | # define MIXMASTER "mixmaster" |
|---|
| 12 | # endif |
|---|
| 13 | # ifndef USE_POP |
|---|
| 14 | # define USE_POP |
|---|
| 15 | # endif |
|---|
| 16 | # ifndef USE_SMTP |
|---|
| 17 | # define USE_SMTP |
|---|
| 18 | # endif |
|---|
| 19 | # ifndef USE_SSL_OPENSSL |
|---|
| 20 | # define USE_SSL_OPENSSL |
|---|
| 21 | # endif |
|---|
| 22 | # ifndef USE_SSL_GNUTLS |
|---|
| 23 | # define USE_SSL_GNUTLS |
|---|
| 24 | # endif |
|---|
| 25 | # ifndef USE_SSL |
|---|
| 26 | # define USE_SSL |
|---|
| 27 | # endif |
|---|
| 28 | # ifndef USE_SOCKET |
|---|
| 29 | # define USE_SOCKET |
|---|
| 30 | # endif |
|---|
| 31 | # ifndef USE_DOTLOCK |
|---|
| 32 | # define USE_DOTLOCK |
|---|
| 33 | # endif |
|---|
| 34 | # ifndef DL_STANDALONE |
|---|
| 35 | # define DL_STANDALONE |
|---|
| 36 | # endif |
|---|
| 37 | # ifndef USE_HCACHE |
|---|
| 38 | # define USE_HCACHE |
|---|
| 39 | # endif |
|---|
| 40 | # ifndef HAVE_DB4 |
|---|
| 41 | # define HAVE_DB4 |
|---|
| 42 | # endif |
|---|
| 43 | # ifndef HAVE_GDBM |
|---|
| 44 | # define HAVE_GDBM |
|---|
| 45 | # endif |
|---|
| 46 | # ifndef HAVE_QDBM |
|---|
| 47 | # define HAVE_QDBM |
|---|
| 48 | # endif |
|---|
| 49 | # ifndef HAVE_LIBIDN |
|---|
| 50 | # define HAVE_LIBIDN |
|---|
| 51 | # endif |
|---|
| 52 | # ifndef HAVE_GETADDRINFO |
|---|
| 53 | # define HAVE_GETADDRINFO |
|---|
| 54 | # endif |
|---|
| 55 | # ifndef USE_SASL |
|---|
| 56 | # define USE_SASL |
|---|
| 57 | # endif |
|---|
| 58 | #endif |
|---|