blob: 49d2f65b06e349f0473f10d9e508a26d8920662b (
plain)
1
2
3
4
5
6
7
8
|
AC_DEFUN([DOVECOT_WANT_PREFETCH], [
if test $want_prefetch_userdb != no; then
AC_DEFINE(USERDB_PREFETCH,, [Build with prefetch userdb support])
userdb="$userdb prefetch"
else
not_userdb="$not_userdb prefetch"
fi
])
|