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

Αρχική Σελίδα
Delete this message
Reply to this message
Συντάκτης: Ade Lovett
Ημερομηνία:  
Προς: Jochen Erwied, Steven A. Reisman
Υ/ο: exim-users
Αντικείμενο: 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