#!/bin/bash set -e PHP_VER=$1 if [ -d "/php" ]; then rm -rf /php/* fi cd /php-src tar zxvf php-${PHP_VER}.tar.gz cd /php-src/php-${PHP_VER} ./configure \ --prefix=/php \ --enable-cgi \ --enable-cli \ --with-config-file-path=/php5 \ --with-openssl \ --with-openssl-dir=/usr/local/ssl # --enable-debug \ # --enable-maintainer-zts make make install
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 24779 | Robert Cowham | P4PHP 2016.2.1490102 |