LuKreme: > Given that I have db48 installed from ports under FreeBSD, what > is the appropriate flag to pass to compile postfix against this > rather than the ?default?
To build with Berkeley DB 4.8 installed from /usr/ports, you have to specify the location of the include file and of the object library. $ make makefiles CCARGS="... -I/usr/local/include/db48 ..." \ AUXLIBS="... -L/usr/local/lib/db48 -ldb-4.8 ..." I recall that FreeBSD had a safety mechanism to avoid symbol name clashes. Wietse