[Dovecot] v1.1.alpha6 released
Geert Hendrickx
ghen at telenet.be
Sun Sep 16 21:07:47 EEST 2007
On Sun, Sep 16, 2007 at 03:07:02PM +0300, Timo Sirainen wrote:
> http://dovecot.org/releases/1.1/alpha/dovecot-1.1.alpha6.tar.gz
> http://dovecot.org/releases/1.1/alpha/dovecot-1.1.alpha6.tar.gz.sig
There are a few problems building this on NetBSD:
- src/master: master-settings.c requires <sys/resource.h>, see the attached
patch.
- src/plugin/quota: *BSD rpcgen doesn't copy rquota.h when called with -c.
The Makefile should either: cp the file as part of the rquota_xdr.c Makefile
target, or change #include "rquota.h" to #include <rpcsvc/rquota.h> with sed.
- apparantly the rquota_xdr.c target is not called automatically.
- doc/wiki/Makefile: BSD make is confused by the brackets in wiki_DATA,
Migration.Vm(2d)pop3d.txt on line 547: "make: don't know how to make 2d."
GNU make has no problem with this. Either the pkgsrc package should be
configured to use GNU make instead, or the file should be renamed.
Seems to build and run fine, otherwise.
Geert
-------------- next part --------------
$NetBSD$
--- src/master/master-settings.c.orig 2007-09-16 17:18:22.000000000 +0200
+++ src/master/master-settings.c
@@ -24,6 +24,10 @@
#include <pwd.h>
#include <grp.h>
+#ifdef HAVE_SYS_RESOURCE_H
+# include <sys/resource.h>
+#endif
+
enum settings_type {
SETTINGS_TYPE_ROOT,
SETTINGS_TYPE_SERVER,
More information about the dovecot
mailing list