diff options
author | Andrey Hristov <andrey@php.net> | 1999-05-08 18:16:30 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 1999-05-08 18:16:30 +0000 |
commit | cd901e858650ed2778c6fc777aefc2fe0538e347 (patch) | |
tree | 701ce117f5c0db12d43eac1a6e82f61993951e6d /genif.sh | |
parent | ae6f852cb67f2cab0787035811efc0426f8e2d86 (diff) | |
download | php-git-cd901e858650ed2778c6fc777aefc2fe0538e347.tar.gz |
-fixed configure.in.in to use genif.sh instead of genif.pl
-fixed genif.sh
-updated php3_mysql.h to have phpext_mysql_ptr
Diffstat (limited to 'genif.sh')
-rw-r--r-- | genif.sh | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,6 +1,6 @@ #! /bin/sh -# $Id: genif.sh,v 1.1 1999-05-06 20:52:19 sas Exp $ +# $Id: genif.sh,v 1.2 1999-05-08 18:16:29 andrey Exp $ # replacement for genif.pl infile="$1" @@ -16,8 +16,7 @@ fi cmd1='echo $data | grep @EXT_INCLUDE_CODE@ > /dev/null 2>&1' cmd2='echo $data | grep @EXT_MODULE_PTRS@ > /dev/null 2>&1' -while read ; do - data="$REPLY" +while read data; do if eval $cmd1 ; then for ext in $* ; do for pre in php3 php php4 zend; do |