K2.6 patches and update.
[tomato.git] / release / src / router / php / sapi / aolserver / config.m4
bloba193bfd0586ec0d7a2f17f257e0c5a755ce17da6
1 dnl
2 dnl $Id$
3 dnl
5 PHP_ARG_WITH(aolserver,,
6 [  --with-aolserver=DIR    Specify path to the installed AOLserver], no, no)
8 AC_MSG_CHECKING([for AOLserver support])
10 if test "$PHP_AOLSERVER" != "no"; then
11   if test -d "$PHP_AOLSERVER/include"; then
12     PHP_AOLSERVER_SRC=$PHP_AOLSERVER
13   fi
14   if test -z "$PHP_AOLSERVER_SRC" || test ! -d $PHP_AOLSERVER_SRC/include; then
15     AC_MSG_ERROR(Please specify the path to the source distribution of AOLserver using --with-aolserver-src=DIR)
16   fi
17   if test ! -d $PHP_AOLSERVER/bin ; then
18     AC_MSG_ERROR(Please specify the path to the root of AOLserver using --with-aolserver=DIR)
19   fi
20   PHP_BUILD_THREAD_SAFE
21   PHP_ADD_INCLUDE($PHP_AOLSERVER_SRC/include)
22   AC_DEFINE(HAVE_AOLSERVER,1,[Whether you have AOLserver])
23   PHP_SELECT_SAPI(aolserver, shared, aolserver.c)
24   INSTALL_IT="\$(INSTALL) -m 0755 $SAPI_SHARED \$(INSTALL_ROOT)$PHP_AOLSERVER/bin/"
27 AC_MSG_RESULT([$PHP_AOLSERVER])
29 dnl ## Local Variables:
30 dnl ## tab-width: 4
31 dnl ## End: