forked from hightman/scws
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
dnl $Id$ | ||
dnl config.m4 for extension scws | ||
|
||
dnl Comments in this file start with the string 'dnl'. | ||
dnl Remove where necessary. This file will not work | ||
dnl without editing. | ||
|
||
PHP_ARG_WITH(scws, for scws support, | ||
[ --with-scws[=DIR] Include scws support. DIR is the install directory of scws. | ||
If not specified it will automatically search the system path.], yes) | ||
|
||
if test "$PHP_SCWS" != "no"; then | ||
if test "$PHP_SCWS" != "built-in"; then | ||
if test "$PHP_SCWS" != "yes"; then | ||
SEARCH_PATH="$PHP_SCWS" | ||
else | ||
SEARCH_PATH="/usr/local /usr /opt/local /usr/local/scws" | ||
fi | ||
SEARCH_FOR="/include/scws/scws.h" | ||
SCWS_DIR="" | ||
|
||
# search default path list | ||
AC_MSG_CHECKING([for scws.h]) | ||
for i in $SEARCH_PATH ; do | ||
if test -f $i/$SEARCH_FOR; then | ||
SCWS_DIR=$i | ||
AC_MSG_RESULT([yes, found in $i]) | ||
fi | ||
done | ||
if test -z "$SCWS_DIR"; then | ||
AC_MSG_RESULT([no]) | ||
AC_MSG_ERROR([Please download and install scws from http://www.xunsearch.com/scws]) | ||
fi | ||
|
||
PHP_ADD_INCLUDE($SCWS_DIR/include/scws) | ||
LIBNAME=scws | ||
LIBSYMBOL=scws_new | ||
|
||
PHP_CHECK_LIBRARY($LIBNAME,$LIBSYMBOL, | ||
[ | ||
PHP_ADD_LIBRARY_WITH_PATH($LIBNAME, $SCWS_DIR/lib, SCWS_SHARED_LIBADD) | ||
AC_DEFINE(HAVE_SCWS,1,[ ]) | ||
],[ | ||
AC_MSG_ERROR([Incorrect scws library]) | ||
],[ | ||
-L$SCWS_DIR/lib -lm | ||
]) | ||
|
||
PHP_SUBST(SCWS_SHARED_LIBADD) | ||
PHP_NEW_EXTENSION(scws, php_scws.c, $ext_shared) | ||
else | ||
dnl # use bundled library | ||
PHP_SCWS_CFLAGS="-I@ext_srcdir@ -I@ext_srcdir@/libscws" | ||
|
||
libscws_src="libscws/charset.c libscws/darray.c \ | ||
libscws/pool.c libscws/rule.c \ | ||
libscws/scws.c libscws/xdb.c libscws/lock.c\ | ||
libscws/xdict.c libscws/xtree.c" | ||
|
||
dnl # check -lm (math lib) | ||
AC_CHECK_LIB(m, expf, [ PHP_ADD_LIBRARY(m,,SCWS_SHARED_LIBADD) ], | ||
[ AC_MSG_ERROR(scws: expf() not supported by this platform) ]) | ||
PHP_SUBST(SCWS_SHARED_LIBADD) | ||
|
||
PHP_NEW_EXTENSION(scws, php_scws.c $libscws_src, $ext_shared,,$PHP_SCWS_CFLAGS) | ||
PHP_ADD_BUILD_DIR($ext_builddir/libscws) | ||
|
||
dnl # check unix header files | ||
AC_CHECK_HEADERS([ sys/file.h sys/time.h unistd.h string.h fcntl.h ],, [ AC_MSG_ERROR(scws: some header file not found) ]) | ||
fi | ||
fi | ||
|