I have built the imap library.
Then copied c-client/c-client.a to /usr/local/lib
And copied c-client/rfc822.h, mail.h
and linkage.h to /usr/local/include. Then made imap.so in my /php/dl/
Now when i use:
dl("imap.so");
I get the following error. Any ideas?
Unable to load dynamic library '/usr/local/src/php-3.0.18/dl/imap.so' - /usr/local/src/php-3.0.18/dl/imap.so: undefined symbol: mm_lsub
Obviously its finding the imap.so, but cant run it because of undefined symbol: mm_lsub
but what the heck is that?
Derek C.