Re: Re[2]: [Exim] Exim build problems

Top Pagina
Delete this message
Reply to this message
Auteur: Ade Lovett
Datum:  
Aan: Jochen Erwied, Steven A. Reisman
CC: exim-users
Onderwerp: Re: Re[2]: [Exim] Exim build problems
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