2005-01-07 21:52:28 +00:00
|
|
|
diff -r -u dovecot-0.99.13.orig/configure.in dovecot-0.99.13/configure.in
|
|
|
|
--- dovecot-0.99.13.orig/configure.in 2004-12-19 23:58:19.000000000 -0500
|
|
|
|
+++ dovecot-0.99.13/configure.in 2005-01-06 18:17:36.000000000 -0500
|
2004-12-23 20:17:34 +00:00
|
|
|
@@ -21,6 +21,13 @@
|
2004-12-14 20:49:25 +00:00
|
|
|
# check posix headers
|
|
|
|
AC_CHECK_HEADERS(sys/time.h)
|
|
|
|
|
|
|
|
+AC_ARG_WITH(docdir,
|
|
|
|
+[ --with-docdir=DIR directory for documentation (DATADIR/doc/dovecot)],
|
|
|
|
+ docdir="$withval",
|
|
|
|
+ docdir=\${datadir}/doc/dovecot
|
|
|
|
+)
|
|
|
|
+AC_SUBST(docdir)
|
|
|
|
+
|
|
|
|
AC_ARG_ENABLE(ipv6,
|
|
|
|
[ --enable-ipv6 Enable IPv6 support (default)],
|
|
|
|
if test x$enableval = xno; then
|
2005-01-07 21:52:28 +00:00
|
|
|
diff -r -u dovecot-0.99.13.orig/doc/Makefile.am dovecot-0.99.13/doc/Makefile.am
|
|
|
|
--- dovecot-0.99.13.orig/doc/Makefile.am 2004-12-29 12:35:07.000000000 -0500
|
|
|
|
+++ dovecot-0.99.13/doc/Makefile.am 2005-01-06 18:26:44.000000000 -0500
|
|
|
|
@@ -1,20 +1,28 @@
|
2004-12-14 20:49:25 +00:00
|
|
|
-docdir = $(datadir)/doc/dovecot
|
|
|
|
+exampledir=$(docdir)/examples
|
|
|
|
|
2004-12-23 20:17:34 +00:00
|
|
|
-doc_DATA = \
|
2005-01-07 21:52:28 +00:00
|
|
|
- USE-WIKI-INSTEAD \
|
2004-12-23 20:17:34 +00:00
|
|
|
- auth.txt \
|
|
|
|
- configuration.txt \
|
|
|
|
- design.txt \
|
|
|
|
- index.txt \
|
|
|
|
- mail-storages.txt \
|
|
|
|
- multiaccess.txt \
|
|
|
|
- nfs.txt \
|
|
|
|
+doc_DATA = \
|
2005-01-07 21:52:28 +00:00
|
|
|
+ USE-WIKI-INSTEAD \
|
2004-12-23 20:17:34 +00:00
|
|
|
+ auth.txt \
|
|
|
|
+ configuration.txt \
|
|
|
|
+ design.txt \
|
|
|
|
+ index.txt \
|
|
|
|
+ mail-storages.txt \
|
|
|
|
+ multiaccess.txt \
|
|
|
|
+ nfs.txt \
|
2004-12-14 20:49:25 +00:00
|
|
|
securecoding.txt
|
|
|
|
|
|
|
|
-EXTRA_DIST = \
|
2004-12-23 20:17:34 +00:00
|
|
|
- mkcert.sh \
|
|
|
|
- dovecot-openssl.cnf \
|
|
|
|
- dovecot-ldap.conf \
|
|
|
|
- dovecot-mysql.conf \
|
2004-12-14 20:49:25 +00:00
|
|
|
- dovecot-pgsql.conf \
|
2004-12-23 20:17:34 +00:00
|
|
|
+example_DATA = \
|
|
|
|
+ ../dovecot-example.conf \
|
|
|
|
+ mkcert.sh \
|
2005-01-07 21:52:28 +00:00
|
|
|
+ dovecot-openssl.cnf \
|
2004-12-23 20:17:34 +00:00
|
|
|
+ dovecot-ldap.conf \
|
|
|
|
+ dovecot-mysql.conf \
|
2004-12-14 20:49:25 +00:00
|
|
|
+ dovecot-pgsql.conf
|
|
|
|
+
|
2004-12-23 20:17:34 +00:00
|
|
|
+ssl_DATA = \
|
|
|
|
+ dovecot-openssl.cnf
|
|
|
|
+
|
|
|
|
+EXTRA_DIST = \
|
|
|
|
+ $(example_DATA) \
|
|
|
|
+ $(ssl_DATA) \
|
2004-12-14 20:49:25 +00:00
|
|
|
$(doc_DATA)
|
2005-01-07 21:52:28 +00:00
|
|
|
diff -r -u dovecot-0.99.13.orig/Makefile.am dovecot-0.99.13/Makefile.am
|
|
|
|
--- dovecot-0.99.13.orig/Makefile.am 2003-05-05 12:46:57.000000000 -0400
|
|
|
|
+++ dovecot-0.99.13/Makefile.am 2005-01-06 18:17:36.000000000 -0500
|
2004-12-23 20:17:34 +00:00
|
|
|
@@ -1,11 +1,22 @@
|
2004-12-14 20:49:25 +00:00
|
|
|
SUBDIRS = src doc
|
|
|
|
|
|
|
|
confdir = $(sysconfdir)
|
|
|
|
-conf_DATA = dovecot-example.conf
|
|
|
|
+conf_DATA = dovecot.conf
|
|
|
|
|
2004-12-23 20:17:34 +00:00
|
|
|
-EXTRA_DIST = \
|
|
|
|
- config.rpath \
|
|
|
|
- dovecot.spec \
|
|
|
|
- dovecot.spec.in \
|
|
|
|
- COPYING.LGPL \
|
|
|
|
+
|
|
|
|
+doc_DATA = \
|
|
|
|
+ AUTHORS \
|
|
|
|
+ COPYING \
|
|
|
|
+ COPYING.LGPL \
|
|
|
|
+ ChangeLog \
|
|
|
|
+ INSTALL \
|
|
|
|
+ NEWS \
|
|
|
|
+ README \
|
|
|
|
+ TODO
|
2004-12-14 20:49:25 +00:00
|
|
|
+
|
2004-12-23 20:17:34 +00:00
|
|
|
+EXTRA_DIST = \
|
|
|
|
+ config.rpath \
|
|
|
|
+ dovecot.spec \
|
|
|
|
+ dovecot.spec.in \
|
|
|
|
+ COPYING.LGPL \
|
|
|
|
$(conf_DATA)
|