On Mon, 13 Nov 2006, Gary Casterline wrote:
Undefined first referenced symbol in file mail_expunge_full ext/imap/.libs/php_imap.o ld: fatal: Symbol referencing errors. No output written to sapi/cli/php make: *** [sapi/cli/php] Error 1
mail_expunge_full() is defined in the c-client library. It is the new function, replacing mail_expunge() which is now a macro that invoked mail_expunge_full().
I suspect that you are compiling with the new c-client, but are linking with a shared library version of an older version of c-client. I don't distribute c-client in a shared library version, but some third parties do.
Check your load command to make sure that you're linking with the c-client.a file in the imap-2006d build and not some other version.
-- Mark -- http://staff.washington.edu/mrc Science does not emerge from voting, party politics, or public debate. Si vis pacem, para bellum. _______________________________________________ Imap-uw mailing list [email protected] https://mailman1.u.washington.edu/mailman/listinfo/imap-uw
