SnowLeopardにphp4.4.9をインストール

#!/bin/sh

PREFIX='/usr/local/'
PWD=`pwd`

build() {
  make distclean

  EXTENSION_DIR=${1}lib/extensions/
  export EXTENSION_DIR

  CFLAGS='-arch x86_64 -g -Os -pipe -no-cpp-precomp'
  CCFLAGS='-arch x86_64 -g -Os -pipe'
  CXXFLAGS='-arch x86_64 -g -Os -pipe'
  LDFLAGS='-arch x86_64 -bind_at_load'
  export CFLAGS CXXFLAGS LDFLAGS CCFLAGS

  EXTRA_LIBS='-lresolv'
  export EXTRA_LIBS

  ./configure \
  --prefix=${1} \
  --with-apxs2=/usr/sbin/apxs \
  --with-config-file-path=${1}/etc \
  --with-pear=${1}/pear \
  --enable-cli \
  --enable-force-cgi-redirect \
  --enable-mbstring \
  --enable-mbregex \
  --enable-zend-multibyte \
  --with-iconv-dir=/usr/local \
  --with-gettext=/usr/local \
  --enable-memory-limit \
  --enable-sockets \
  --enable-ftp \
  --with-curl \
  --enable-exif \
  --with-gd \
  --with-jpeg-dir=/usr/local \
  --with-png-dir=/usr/local \
  --with-freetype-dir=/usr/local \
  --with-t1lib=/usr/local \
  --with-ttf \
  --enable-gd-native-ttf \
  --enable-gd-jis-conv \
  --with-mysql=/usr/local/mysql \
  --with-pgsql=/usr/local/postgresql \
  --enable-xml \
  --with-xsl \
  --with-dom \
  --with-xmlrpc \
  --with-mcrypt \
  --enable-zip \
  --with-zlib \
  --with-bz2 \
  --with-zlib-dir=/usr \
  && make all
}


VER=`basename $PWD`
PREFIX=${PREFIX}${VER}

build ${PREFIX} 


if [ -e ${PREFIX} -a -d ${PREFIX} ]
then
  sudo rm -rf ${PREFIX}
fi

sudo mkdir -p ${PREFIX} 
sudo make install'