From: Antony Dovgal Date: Wed, 15 Jun 2005 17:19:41 +0000 (+0000) Subject: MFH latest Jani's patch to 5_0 X-Git-Tag: php-5.0.5RC1~157 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c2982d7dd06fdf78f3bd2f7d1bded90a84c7b089;p=php MFH latest Jani's patch to 5_0 --- diff --git a/scripts/phpize.in b/scripts/phpize.in index 6db04eeb01..64399997ee 100644 --- a/scripts/phpize.in +++ b/scripts/phpize.in @@ -1,7 +1,6 @@ #!/bin/sh # Variable declaration -EGREP='@EGREP@' prefix='@prefix@' exec_prefix="`eval echo @exec_prefix@`" phpdir="`eval echo @libdir@`/build" @@ -52,9 +51,9 @@ phpize_check_configm4() phpize_get_api_numbers() { # extracting API NOs: - PHP_API_VERSION=`$EGREP '#define PHP_API_VERSION' $includedir/main/php.h|sed 's/#define PHP_API_VERSION//'` - ZEND_MODULE_API_NO=`$EGREP '#define ZEND_MODULE_API_NO' $includedir/Zend/zend_modules.h|sed 's/#define ZEND_MODULE_API_NO//'` - ZEND_EXTENSION_API_NO=`$EGREP '#define ZEND_EXTENSION_API_NO' $includedir/Zend/zend_extensions.h|sed 's/#define ZEND_EXTENSION_API_NO//'` + PHP_API_VERSION=`grep '#define PHP_API_VERSION' $includedir/main/php.h|sed 's/#define PHP_API_VERSION//'` + ZEND_MODULE_API_NO=`grep '#define ZEND_MODULE_API_NO' $includedir/Zend/zend_modules.h|sed 's/#define ZEND_MODULE_API_NO//'` + ZEND_EXTENSION_API_NO=`grep '#define ZEND_EXTENSION_API_NO' $includedir/Zend/zend_extensions.h|sed 's/#define ZEND_EXTENSION_API_NO//'` } phpize_print_api_numbers()