dovecot-1.2rc2

ようやくdovecotの1.2がRCで公開されたので早速導入。

./configure –with-pgsql –with-mysql –with-db –with-ssldir=/usr/sfw –with-gnu-ld –with-libiconv-prefix=/usr/local/lib

makeして暫く流れたところでエラーで止まった。

quota-fs.c: In function `do_rquota_group’:
quota-fs.c:436: error: `GRPQUOTA’ undeclared (first use in this function)
quota-fs.c:436: error: (Each undeclared identifier is reported only once
quota-fs.c:436: error: for each function it appears in.)

GRPQUOTAなんてうちのOSにはないよ。
rquotaも使う予定はないし。

そんなわけで、
NetBSDな方のおっしゃるとおりに

vi src/plugins/quota/quota-fs.c
-#ifdef EXT_RQUOTAVERS
+#if defined(EXT_RQUOTAVERS) && defined(GRPQUOTA)

と、修正。
その後は問題もなく終了〜