日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > php >内容正文

php

转 安装php时报gd相关的错误(gd_ctx.c)

發布時間:2024/4/17 php 42 豆豆
生活随笔 收集整理的這篇文章主要介紹了 转 安装php时报gd相关的错误(gd_ctx.c) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

在安裝php時,報如下錯誤

In file included from /kk/php-5.4.0/ext/gd/gd.c:103:

/kk/php-5.4.0/ext/gd/gd_ctx.c: In function ‘_php_image_stream_putc’:

/kk/php-5.4.0/ext/gd/gd_ctx.c:51: 錯誤:‘struct gdIOCtx’ 沒有名為 ‘data’ 的成員

/kk/php-5.4.0/ext/gd/gd_ctx.c: In function ‘_php_image_stream_putbuf’:

/kk/php-5.4.0/ext/gd/gd_ctx.c:58: 錯誤:‘struct gdIOCtx’ 沒有名為 ‘data’ 的成員

/kk/php-5.4.0/ext/gd/gd_ctx.c: In function ‘_php_image_stream_ctxfree’:

/kk/php-5.4.0/ext/gd/gd_ctx.c:67: 錯誤:‘struct gdIOCtx’ 沒有名為 ‘data’ 的成員

/kk/php-5.4.0/ext/gd/gd_ctx.c:68: 錯誤:‘struct gdIOCtx’ 沒有名為 ‘data’ 的成員

/kk/php-5.4.0/ext/gd/gd_ctx.c:69: 錯誤:‘struct gdIOCtx’ 沒有名為 ‘data’ 的成員

/kk/php-5.4.0/ext/gd/gd_ctx.c: In function ‘_php_image_output_ctx’:

/kk/php-5.4.0/ext/gd/gd_ctx.c:153: 錯誤:‘gdIOCtx’ 沒有名為 ‘data’ 的成員

make: *** [ext/gd/gd.lo] 錯誤 1

好像說這個錯誤算是php5.4的bug,下面對應的兩篇文章有對應的說明:
https://bugs.php.net/bug.php?id=55224
https://bugs.php.net/bug.php?id=60108

解決方法

vi <gd_dir>/include/gd_io.h

gdIOCtx結構中增加void *data;

格式如下

?typedef struct gdIOCtx

{

? int (*getC) (struct gdIOCtx *);

? int (*getBuf) (struct gdIOCtx *, void *, int);

?

? void (*putC) (struct gdIOCtx *, int);

? int (*putBuf) (struct gdIOCtx *, const void *, int);

?

? /* seek must return 1 on SUCCESS, 0 on FAILURE. Unlike fseek! */

? int (*seek) (struct gdIOCtx *, const int);

?

? long (*tell) (struct gdIOCtx *);

?

? void (*gd_free) (struct gdIOCtx *);

? void (*data);

}

gdIOCtx;

轉載于:https://www.cnblogs.com/xiangxiaodong/p/3489276.html

總結

以上是生活随笔為你收集整理的转 安装php时报gd相关的错误(gd_ctx.c)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。