Paul Menzel:
> Dear Post
>
>
> Building Berkeley DB from source, and building Postfix according to
> *Postfix Berkeley DB Howto* [1] with
>
> make makefiles CCARGS="-DHAS_DB
> -I/scratch/local2/berkeley-db/include"
> AUXLIBS="-L/scratch/local2/berkeley-db/lib -ldb"
This expects /scratch/local2/berkeley-db/lib/libdb.so*
> bin/postconf: error while loading shared libraries: libdb-5.3.so: cannot
> open shared object file: No such file or directory
You may need to specify -ldb-5.3, given that your file is in
a non-default place.
make makefiles CCARGS="-DHAS_DB -I/scratch/local2/berkeley-db/include" \
AUXLIBS="-L/scratch/local2/berkeley-db/lib -ldb-5.3"
Wietse