sniper Wed Jun 15 13:13:40 2005 EDT Modified files: /php-src/scripts phpize.in Log: - This does not have to be egrep here http://cvs.php.net/diff.php/php-src/scripts/phpize.in?r1=1.24&r2=1.25&ty=u Index: php-src/scripts/phpize.in diff -u php-src/scripts/phpize.in:1.24 php-src/scripts/phpize.in:1.25 --- php-src/scripts/phpize.in:1.24 Fri Jun 10 08:33:59 2005 +++ php-src/scripts/phpize.in Wed Jun 15 13:13:39 2005 @@ -1,7 +1,6 @@ #!/bin/sh # Variable declaration -EGREP='@EGREP@' prefix='@prefix@' exec_prefix="`eval echo @[EMAIL PROTECTED]" phpdir="`eval echo @[EMAIL PROTECTED]/build" @@ -52,9 +51,9 @@ 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()
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php