1 Star 0 Fork 1

阿钟哥/php-src

forked from zing/php-src 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
genfiles 581 Bytes
一键复制 编辑 原始数据 按行查看 历史
#! /bin/sh
if [ -z $YACC ]; then
YACC="bison"
fi
YACC="$YACC -y -l"
if [ -z $RE2C ]; then
RE2C="re2c"
fi
STD="make -f Makefile.frag RE2C='$RE2C' RE2C_FLAGS='-i' YACC='$YACC' srcdir=Zend builddir=Zend top_srcdir=."
(eval "$STD Zend/zend_language_parser.c Zend/zend_language_scanner.c Zend/zend_ini_parser.c Zend/zend_ini_scanner.c")
set -x
CLEANUP_FILES=" \
ext/pdo/pdo_sql_parser.c \
ext/date/lib/parse_date.c \
ext/standard/url_scanner_ex.c \
ext/standard/var_unserializer.c \
"
for f in $CLEANUP_FILES; do
cp $f $f.orig
grep -v '#line ' $f.orig > $f
done
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/laozhong/php-src.git
git@gitee.com:laozhong/php-src.git
laozhong
php-src
php-src
master

搜索帮助