1
0
mirror of https://github.com/php/php-src.git synced 2026-04-08 08:33:06 +02:00
Files
archived-php-src/sapi/aolserver/config.m4
Sascha Schumann 3f1c010615 Remove SAPI_TARGET and use PHP_SAPI completely.
The target filename is now available as SAPI_PROGRAM, SAPI_SHARED, and
SAPI_STATIC.
1999-10-07 21:04:26 +00:00

26 lines
572 B
Bash

dnl ## $Id$ -*- sh -*-
RESULT=no
AC_MSG_CHECKING(for AOLserver support)
AC_ARG_WITH(aolserver,
[ --with-aolserver=DIR],
[
if test ! -d $withval ; then
AC_MSG_ERROR(You did not specify a directory)
fi
enable_thread_safety=yes
passthru="$passthru --enable-thread-safety"
NS_DIR=$withval
AC_ADD_INCLUDE($NS_DIR/include)
AC_DEFINE(HAVE_AOLSERVER)
PHP_SAPI=aolserver
PHP_BUILD_SHARED
INSTALL_IT="\$(SHELL) \$(srcdir)/install-sh -m 0755 $SAPI_SHARED $NS_DIR/root/bin/"
RESULT=yes
])
AC_MSG_RESULT($RESULT)
dnl ## Local Variables:
dnl ## tab-width: 4
dnl ## End: