30 May
2003
30 May
'03
3:43 a.m.
On Fri, 2003-05-30 at 03:25, Charlie Allom wrote:
dlopen(/usr/local/lib/dovecot/imap/drac.so) failed: /usr/local/lib/dovecot/imap/drac.so: Undefined PLT symbol "dracauth" (symnum = 28)
That look really weird. Remember instead of -ldrac I used -I/usr/pkg/lib/libdrac.a
-I? not -l? rather just give libdrac.a directly without either one.
But I'm not sure if that works. You may need to extract the libdrac.a and give the extracted .o files to gcc. Something like:
mkdir dracobj cd dracobj ar x /usr/pkg/lib/libdrac.a cd .. gcc drac.c ..etc.. dracobj/*.o