| 1234567891011121314151617181920 | #!/bin/bashset -excd $(dirname $0)pushd  ../ext/google/protobufphpize --cleanrm -f configure.in configure.acphp make-preload.phpphpizeif [ "$1" = "--release" ]; then  ./configure --with-php-config=$(which php-config)else  # To get debugging symbols in PHP itself, build PHP with:  #   $ ./configure --enable-debug CFLAGS='-g -O0'  ./configure --with-php-config=$(which php-config) CFLAGS="-g -O0 -Wall"fimakepopd
 |