config.m4 982 B

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