blob: e1f9d5022716eb936d61f94e139de48a87e12837 (
plain)
1
2
3
4
5
6
|
#!/bin/sh
PHP_PREFIX="${PHP_PREFIX:-/usr/local}"
cd "$(dirname "$0")" && \
"$PHP_PREFIX/bin/phpize" && \
./configure --with-php-config="$PHP_PREFIX/bin/php-config" --enable-mini-xdebug && \
make
|