Re: [exim] exim-4.74 on Solaris 10

Top Page
Delete this message
Reply to this message
Author: Drav Sloan
Date:  
To: Frank Elsner
CC: Exim Users, Dennis Davis
Subject: Re: [exim] exim-4.74 on Solaris 10
Frank Elsner wrote:
> > I'm puzzled, where does "DNSDB.o" come from? The exim source uses
> > lowercase filenames. There's certainly a src/lookups/dnsdb.c which
> > give an object file dnsdb.o. But there's no DNSDB.c
>
> Maybe "tr" on Solaris is broken? Wouldn't be the only one :-(


As Phil Pennock has already pointed out, the tr that will usually be in
Solaris's default path will expect:

tr [A-Z] [a-z]


However the tr in /usr/xpg4/bin will happily take

tr A-Z a-z

and hence the suggested

PATH=/usr/xpg4/bin:$PATH make

fix (which admittedily expects the /usr/xpg4/bin path to be there, installed
with a package which my memory is failing to remember!)

Regards

D.