#!/bin/sh

export CFLAGS="-O2"
export PHP_PREFIX="$HOME/apache"
export AUTOCONF_VERSION="2.59"

$PHP_PREFIX/bin/phpize
if [ $? != 0 ]; then exit 1; fi

./configure \
	--enable-eaccelerator=shared \
	--with-php-config=${PHP_PREFIX}/bin/php-config

