mirror of
https://github.com/php/php-src.git
synced 2026-04-04 22:52:40 +02:00
with libtool components
* SAPI targets can enable thread-safe mode and define
shared/static/program build target
* all configure scripts use the same config.cache
* phplibdir is $(top_builddir)/modules to avoid
permission problems
* sapi/*/Makefile.inc are gone
* runpath handling cleaned up
* top-level Makefile.in obsoleted through Makefile.am
* --enable-versioning uses libtool's cleaner and more
portable -export-symbols feature
26 lines
581 B
Bash
26 lines
581 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=nsapi
|
|
PHP_BUILD_SHARED
|
|
INSTALL_IT="\$(SHELL) \$(srcdir)/install-sh -m 0755 libs/libphp4.so $NS_DIR/root/bin/libphp4.so"
|
|
RESULT=yes
|
|
])
|
|
AC_MSG_RESULT($RESULT)
|
|
|
|
dnl ## Local Variables:
|
|
dnl ## tab-width: 4
|
|
dnl ## End:
|