|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-11-13 12:00 UTC] tony2001@php.net
[2006-11-13 18:28 UTC] casterln at nature dot berkeley dot edu
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 07:00:01 2025 UTC |
Description: ------------ I got an error: 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 imap-2006d.DEV.SNAP-0611062033. My workaround was to add the following to ext/imap/php_imap.c +/* Mail expunge mailbox + * Accepts: mail stream + * sequence to expunge if non-NIL + * expunge options + * Returns: T on success, NIL on failure + */ + +long mail_expunge_full (MAILSTREAM *stream,char *sequence,long options) +{ + /* do the driver's action */ + return stream->dtb ? (*stream->dtb->expunge) (stream,sequence,options) : NIL; +} + +