From 626253940ea0c246984e277b6786b4950b69e3cc Mon Sep 17 00:00:00 2001 From: foobar Date: Sat, 7 May 2005 02:51:53 +0000 Subject: - Added PHP_INSTALL_HEADERS() macro - Fixed several VPATH build issues - Changed all awk calls to use $AWK - Changed all mkdir calls to use "$php_shtool mkdir" --- scripts/phpize.m4 | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'scripts/phpize.m4') diff --git a/scripts/phpize.m4 b/scripts/phpize.m4 index afb555d9c1..5b056f5709 100644 --- a/scripts/phpize.m4 +++ b/scripts/phpize.m4 @@ -2,8 +2,6 @@ dnl This file becomes configure.in for self-contained extensions. AC_INIT(config.m4) -PHP_INIT_BUILD_SYSTEM - AC_DEFUN([PHP_WITH_PHP_CONFIG],[ AC_ARG_WITH(php-config, [ --with-php-config=PATH],[ @@ -19,6 +17,10 @@ AC_DEFUN([PHP_WITH_PHP_CONFIG],[ if test -z "$prefix"; then AC_MSG_ERROR(Cannot find php-config. Please use --with-php-config=PATH) fi + + php_shtool=$srcdir/build/shtool + PHP_INIT_BUILD_SYSTEM + AC_MSG_CHECKING(for PHP prefix) AC_MSG_RESULT($prefix) AC_MSG_CHECKING(for PHP includes) @@ -106,7 +108,7 @@ PHP_SUBST(SHELL) PHP_GEN_BUILD_DIRS PHP_GEN_GLOBAL_MAKEFILE -test -d modules || mkdir modules +test -d modules || $php_shtool mkdir modules touch .deps AC_CONFIG_HEADER(config.h) -- cgit v1.2.1