At 23:21 25.07.2002, Rasmus Lerdorf wrote:
> > 6. GD bundling (Rasmus) [done?]
>
>Seems to be done.
>
>-R
There was a discussion about imageellipse and i did a patch to detect
whther or not the
function is available in config.m4 file. The patch also used imagearc in a
wrapper if
the former is missing.
That patch was removed by derick - meanwhile i suggest derick forgot to
cvsclean and
rebuild so the config.m4 are applied.
Derick could you please verify, i mean it makes really no sense that the
function detection
from the build system does fail for gd1.8.3 & imageellipse.
missing part of patch follows below.
marcus
cvs -z3 -q diff gd.c (in directory S:\php4\ext\gd\)
Index: gd.c
===================================================================
RCS file: /repository/php4/ext/gd/gd.c,v
retrieving revision 1.200
diff -u -r1.200 gd.c
--- gd.c 29 Jun 2002 15:54:02 -0000 1.200
+++ gd.c 25 Jul 2002 23:27:18 -0000
@@ -118,6 +118,7 @@
*/
function_entry gd_functions[] = {
PHP_FE(imagearc,
NULL)
+ PHP_FE(imageellipse,
NULL)
PHP_FE(imagechar,
NULL)
PHP_FE(imagecharup,
NULL)
PHP_FE(imagecolorallocate,
NULL)
@@ -148,7 +149,6 @@
PHP_FE(imagecreatetruecolor, NULL)
PHP_FE(imagetruecolortopalette, NULL)
PHP_FE(imagesetthickness,
NULL)
- PHP_FE(imageellipse,
NULL)
PHP_FE(imagefilledarc,
NULL)
PHP_FE(imagefilledellipse,
NULL)
PHP_FE(imagealphablending,
NULL)