1 Star 0 Fork 7

erci2047/php class image_tool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
config.m4 2.11 KB
一键复制 编辑 原始数据 按行查看 历史
上帝禁区 提交于 2013-05-18 00:23 . first commit
dnl $Id$
dnl config.m4 for extension image_tool
dnl Comments in this file start with the string 'dnl'.
dnl Remove where necessary. This file will not work
dnl without editing.
dnl If your extension references something external, use with:
dnl PHP_ARG_WITH(image_tool, for image_tool support,
dnl Make sure that the comment is aligned:
dnl [ --with-image_tool Include image_tool support])
dnl Otherwise use enable:
dnl PHP_ARG_ENABLE(image_tool, whether to enable image_tool support,
dnl Make sure that the comment is aligned:
dnl [ --enable-image_tool Enable image_tool support])
if test "$PHP_IMAGE_TOOL" != "no"; then
dnl Write more examples of tests here...
dnl # --with-image_tool -> check with-path
dnl SEARCH_PATH="/usr/local /usr" # you might want to change this
dnl SEARCH_FOR="/include/image_tool.h" # you most likely want to change this
dnl if test -r $PHP_IMAGE_TOOL/$SEARCH_FOR; then # path given as parameter
dnl IMAGE_TOOL_DIR=$PHP_IMAGE_TOOL
dnl else # search default path list
dnl AC_MSG_CHECKING([for image_tool files in default path])
dnl for i in $SEARCH_PATH ; do
dnl if test -r $i/$SEARCH_FOR; then
dnl IMAGE_TOOL_DIR=$i
dnl AC_MSG_RESULT(found in $i)
dnl fi
dnl done
dnl fi
dnl
dnl if test -z "$IMAGE_TOOL_DIR"; then
dnl AC_MSG_RESULT([not found])
dnl AC_MSG_ERROR([Please reinstall the image_tool distribution])
dnl fi
dnl # --with-image_tool -> add include path
dnl PHP_ADD_INCLUDE($IMAGE_TOOL_DIR/include)
dnl # --with-image_tool -> check for lib and symbol presence
dnl LIBNAME=image_tool # you may want to change this
dnl LIBSYMBOL=image_tool # you most likely want to change this
dnl PHP_CHECK_LIBRARY($LIBNAME,$LIBSYMBOL,
dnl [
dnl PHP_ADD_LIBRARY_WITH_PATH($LIBNAME, $IMAGE_TOOL_DIR/lib, IMAGE_TOOL_SHARED_LIBADD)
dnl AC_DEFINE(HAVE_IMAGE_TOOLLIB,1,[ ])
dnl ],[
dnl AC_MSG_ERROR([wrong image_tool lib version or lib not found])
dnl ],[
dnl -L$IMAGE_TOOL_DIR/lib -lm
dnl ])
dnl
dnl PHP_SUBST(IMAGE_TOOL_SHARED_LIBADD)
PHP_NEW_EXTENSION(image_tool, image_tool.c, $ext_shared)
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/erci2047/php-class-image_tool.git
git@gitee.com:erci2047/php-class-image_tool.git
erci2047
php-class-image_tool
php class image_tool
master

搜索帮助