"Just E. Mail" <justemail(at)imwell-usa(dot)com> writes:
> Now I am trying to install Postfix on the pgsql Client machine. Postfix
> has the following command to 'Building Postfix with PostgreSQL support':
> % make -f Makefile.init makefiles \
> 'CCARGS=-DHAS_PGSQL -I/usr/local/include/pgsql' \
> 'AUXLIBS=-L/usr/local/lib -lpq'
If you have installed Postgres from RPMs, just make sure you've
installed the postgresql-devel RPM too. Forget about /usr/local
--- it should be enough to do
% make -f Makefile.init makefiles \
'CCARGS=-DHAS_PGSQL' \
'AUXLIBS=-lpq'
regards, tom lane