[dovecot-cvs] dovecot configure.in,1.327,1.328

tss at dovecot.org tss at dovecot.org
Sun Mar 18 03:57:13 EET 2007


Update of /var/lib/cvs/dovecot
In directory talvi:/tmp/cvs-serv11369

Modified Files:
	configure.in 
Log Message:
Added system_clean_pool. default_pool is now set statically, so it can be
changed before calling lib_init(). Use malloc_usable_size() if it's
available for asserts and for implementing system_clean_pool.



Index: configure.in
===================================================================
RCS file: /var/lib/cvs/dovecot/configure.in,v
retrieving revision 1.327
retrieving revision 1.328
diff -u -d -r1.327 -r1.328
--- configure.in	16 Mar 2007 15:11:42 -0000	1.327
+++ configure.in	18 Mar 2007 01:57:11 -0000	1.328
@@ -15,7 +15,7 @@
 AC_PROG_LIBTOOL
 AM_ICONV
 
-AC_CHECK_HEADERS(strings.h stdint.h unistd.h dirent.h \
+AC_CHECK_HEADERS(strings.h stdint.h unistd.h dirent.h malloc.h \
   sys/uio.h sys/sysmacros.h sys/resource.h sys/select.h libgen.h \
   sys/quota.h sys/fs/ufs_quota.h ufs/ufs/quota.h jfs/quota.h \
   mntent.h sys/mnttab.h sys/event.h sys/time.h sys/mkdev.h linux/dqblk_xfs.h \
@@ -436,7 +436,8 @@
                strcasecmp stricmp vsnprintf vsyslog writev pread \
 	       setrlimit setproctitle seteuid setreuid setegid setresgid \
 	       strtoull strtouq setpriority quotactl getmntent kqueue kevent \
-	       getrusage backtrace_symbols walkcontext dirfd)
+	       getrusage backtrace_symbols walkcontext dirfd \
+	       malloc_usable_size)
 
 dnl * I/O loop function
 have_ioloop=no
@@ -1858,6 +1859,14 @@
 AC_SUBST(sql_drivers)
 
 dnl **
+dnl ** Settings
+dnl **
+
+dnl get a list of setting .[ch] files, but list .h files first
+SETTING_FILES=`find $srcdir/src -name '*settings.[[ch]]' ! -name all-settings.[[ch]] | sed -e s,$srcdir/src,./src,g -e 's,./src,$(top_srcdir)/src,g' -e 's/^\(.*\)\(.\)$/\2 \1\2/' | sort -r | sed s/^..//|tr '\n' ' '`
+AC_SUBST(SETTING_FILES)
+
+dnl **
 dnl ** Plugins
 dnl **
 
@@ -1889,6 +1898,7 @@
 src/lib-imap/Makefile
 src/lib-index/Makefile
 src/lib-mail/Makefile
+src/lib-master/Makefile
 src/lib-ntlm/Makefile
 src/lib-otp/Makefile
 src/lib-settings/Makefile
@@ -1908,6 +1918,8 @@
 src/master/Makefile
 src/pop3/Makefile
 src/pop3-login/Makefile
+src/config/Makefile
+src/log/Makefile
 src/util/Makefile
 src/plugins/Makefile
 src/plugins/acl/Makefile



More information about the dovecot-cvs mailing list