29 Mar
2006
29 Mar
'06
6:33 p.m.
Hello,
After a long break from Dovecot I finally managed to compile Dovecot-lda on RHEL 4 x86_64 platfrom. For some reason $LIBICONV translates to a @LIBICONV@ on config.status which generates loop for sed. Solution is to manually edit "configure" after autogen.sh.
In configure change line
s,@LIBICONV@,$LIBICONV,;t t
to
s,@LIBICONV@,,;t t
After this configure finishes succesfully.
Tomi