Слияние кода завершено, страница обновится автоматически
dnl $Id$
dnl config.m4 for extension ccsw
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:
PHP_ARG_WITH(ccsw, for ccsw support,
dnl Make sure that the comment is aligned:
[ --with-ccsw Include ccsw support])
dnl Otherwise use enable:
dnl PHP_ARG_ENABLE(ccsw, whether to enable ccsw support,
dnl Make sure that the comment is aligned:
dnl [ --enable-ccsw Enable ccsw support])
if test "$PHP_CCSW" != "no"; then
dnl Write more examples of tests here...
SEARCH_PATH="/usr/local /usr" # you might want to change this
SEARCH_FOR="/include/opencc/opencc.h" # you most likely want to change this
if test -r $PHP_OPENCC/$SEARCH_FOR; then # path given as parameter
AC_MSG_CHECKING([for opencc files in given path])
OPENCC_DIR=$PHP_OPENCC
AC_MSG_RESULT(found in $OPENCC_DIR)
else # search default path list
AC_MSG_CHECKING([for opencc files in default path])
for i in $SEARCH_PATH ; do
if test -r $i/$SEARCH_FOR; then
OPENCC_DIR=$i
AC_MSG_RESULT(found in $i)
fi
done
fi
if test -z "$OPENCC_DIR"; then
AC_MSG_RESULT([not found])
AC_MSG_ERROR([Please reinstall the opencc distribution])
fi
dnl # --with-opencc -> add include path
PHP_ADD_INCLUDE($OPENCC_DIR/include/opencc)
dnl # --with-ccsw -> check with-path
dnl SEARCH_PATH="/usr/local /usr" # you might want to change this
dnl SEARCH_FOR="/include/ccsw.h" # you most likely want to change this
dnl if test -r $PHP_CCSW/$SEARCH_FOR; then # path given as parameter
dnl CCSW_DIR=$PHP_CCSW
dnl else # search default path list
dnl AC_MSG_CHECKING([for ccsw files in default path])
dnl for i in $SEARCH_PATH ; do
dnl if test -r $i/$SEARCH_FOR; then
dnl CCSW_DIR=$i
dnl AC_MSG_RESULT(found in $i)
dnl fi
dnl done
dnl fi
dnl
if test -z "$OPENCC_DIR"; then
AC_MSG_RESULT([not found])
AC_MSG_ERROR([Please reinstall the opencc distribution])
fi
dnl # --with-ccsw -> add include path
PHP_ADD_INCLUDE($OPENCC_DIR/include/opencc)
dnl # --with-ccsw -> check for lib and symbol presence
LIBNAME=opencc # you may want to change this
LIBSYMBOL=libopencc.so # you most likely want to change this
dnl PHP_CHECK_LIBRARY($LIBNAME,$LIBSYMBOL,
dnl [
PHP_ADD_LIBRARY_WITH_PATH($LIBNAME, $OPENCC_DIR/$PHP_LIBDIR, CCSW_SHARED_LIBADD)
dnl AC_DEFINE(HAVE_CCSWLIB,1,[ ])
dnl ],[
dnl AC_MSG_ERROR([wrong ccsw lib version or lib not found])
dnl ],[
dnl -L$CCSW_DIR/lib -lm
dnl ])
dnl
PHP_SUBST(CCSW_SHARED_LIBADD)
PHP_NEW_EXTENSION(ccsw, ccsw.c, $ext_shared)
fi
Вы можете оставить комментарий после Вход в систему
Неприемлемый контент может быть отображен здесь и не будет показан на странице. Вы можете проверить и изменить его с помощью соответствующей функции редактирования.
Если вы подтверждаете, что содержание не содержит непристойной лексики/перенаправления на рекламу/насилия/вульгарной порнографии/нарушений/пиратства/ложного/незначительного или незаконного контента, связанного с национальными законами и предписаниями, вы можете нажать «Отправить» для подачи апелляции, и мы обработаем ее как можно скорее.
Опубликовать ( 0 )