blob: 206b158b9b639f2f885f07c3ebdd0d680434c450 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env sh
git clone https://github.com/php/php-src
cd php-src
git checkout $PHP
cd sapi
rm -rf phpdbg
git clone https://github.com/krakjoe/phpdbg.git
cd ../
./buildconf --force
./configure --disable-all --enable-phpdbg --enable-maintainer-zts
make
|