|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2006-11-24 02:38 UTC] arnaud dot lb at gmail dot com
Description: ------------ Compiling the pop3 extension results in this error with php5.2: /usr/src/pop3-1.0.2/pop3.c: In function `pop3_objects_new': /usr/src/pop3-1.0.2/pop3.c:175: error: structure has no member named `in_get' /usr/src/pop3-1.0.2/pop3.c:176: error: structure has no member named `in_set' GCC version: 3.3.5 (Debian 1:3.3.5-13) PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 06:00:02 2025 UTC |
in order to fix, you must edit pop3.c and change lines 175 and 176 : intern->zo.in_get = 0; intern->zo.in_set = 0; with these others: #if ZEND_MODULE_API_NO >= 20050922 intern->zo.guards = NULL; #else intern->zo.in_get = 0; intern->zo.in_set = 0; #endif (get solution from Fileinfo package , had the same trouble)