Skip to content

Instantly share code, notes, and snippets.

@jimbojsb
Created December 10, 2012 21:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jimbojsb/4253495 to your computer and use it in GitHub Desktop.
Save jimbojsb/4253495 to your computer and use it in GitHub Desktop.
kitchen sink php configure script
'./configure' \
'--prefix=/usr/local' \
'--with-config-file-path=/usr/local/etc' \
'--enable-mbstring' \
'--with-zlib' \
'--with-openssl' \
'--with-curl' \
'--enable-fpm' \
'--with-config-file-path=/usr/local/etc' \
'--enable-ftp' \
'--with-pdo-mysql' \
'--disable-debug' \
'--with-bz2' \
'--with-gd' \
'--enable-exif' \
'--with-mysql' \
'--with-mysqli' \
'--with-imap' \
'--with-imap-ssl' \
'--with-kerberos' \
'--enable-pcntl' \
'--with-xsl' \
'--enable-soap' \
@jimbojsb
Copy link
Author

ubuntu 12.04 packages needed for this to compile:
apt-get install build-essential libxml2-dev libssl-dev pkg-config libbz2-dev libcurl4-openssl-dev libjpeg-dev libvpx-dev libpng-dev libkrb5-dev libc-client-dev libxslt-dev

add --with-jpeg-dir=/usr and --with-vpx-dir=/usr

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment