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