On 09/30/02 15:59, "Jochen Erwied" <mack+exim@???> wrote:
> Choose a larger number :-)
>
> #if ((DB_VERSION_MAJOR<<16 + DB_VERSION_MAJOR) >= 0x40001)
Or do it right :)
#if (DB_VERSION_MAJOR > 4) || \
((DB_VERSION_MAJOR == 4) && (DB_VERSION_MINOR >= 1))
[...]
Of course, this assumes that version >4.1 doesn't change back... :)
-aDe