ID: 20157 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Open +Status: Closed Bug Type: Compile Failure Operating System: Red Hat 7.3 PHP Version: 4.2.3 New Comment:
This bug has been fixed in CVS. In case this was a PHP problem, snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. In case this was a documentation problem, the fix will show up soon at http://www.php.net/manual/. In case this was a PHP.net website problem, the change will show up on the PHP.net site and on the mirror sites in short time. Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2002-10-29 17:13:42] [EMAIL PROTECTED] Since GD 2.0.x the struct gdIOCtx in gd_io.h has changed It was: typedef struct gdIOCtx { ... void (*free)(struct gdIOCtx*); } gdIOCtx; It is now: typedef struct gdIOCtx { ... void (*gd_free)(struct gdIOCtx*); } gdIOCtx; The fix is simple: If you want to use GD 2.0.x, the files gd_ctx.c and gd.c in the ext/gd directory should be edited in order to replace all x->free references where x is of type gdIOCtx by x->gd_free. cordially, Arnaud ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=20157&edit=1