mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
11 lines
256 B
Bash
Executable file
11 lines
256 B
Bash
Executable file
#!/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
|