1 | ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" |
12 | liondeMacBook-PRo:~ lion$ brew - v Homebrew 0.9.5 |
1234 | liondeMacBook-Pro:~ lion$ brew update liondeMacBook-Pro:~ lion$ brew tap homebrew /dupes liondeMacBook-Pro:~ lion$ brew tap homebrew /php liondeMacBook-Pro:~ lion$ brew tap josegonzalez /homebrew-php |
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 | liondeMacBook-Pro:Library lion$ brew options php55 --disable-opcache
Build without Opcache extension --disable-zend-multibyte
Disable auto-detection of Unicode encoded scripts (PHP 5.2 and 5.3 only) --homebrew-apxs
Build against apxs in Homebrew prefix --with-apache
Enable building of shared Apache 2.0 Handler module, overriding any options which disable apache --with-cgi
Enable building of the CGI executable (implies --without-apache) --with-debug
Compile with debugging symbols --with-fpm
Enable building of the fpm SAPI executable (implies --without-apache) --with-gmp
Build with gmp support --with-homebrew-curl
Include Curl support via Homebrew --with-homebrew-libxslt
Include LibXSLT support via Homebrew --with-homebrew-openssl
Include OpenSSL support via Homebrew --with-imap
Include IMAP extension --with-intl
Include internationalization support --with-libMySQL
Include (old-style) libmysql support instead of mysqlnd --with-mssql
Include MSSQL-DB support --with-pdo-oci
Include Oracle databases (requries ORACLE_HOME be set ) --with-pgsql
Include PostgreSQL support --with-phpdbg
Enable building of the phpdbg SAPI executable (PHP 5.4 and above) --with-thread-safety
Build with thread safety --with-tidy
Include Tidy support --without-bz2
Build without bz2 support --without-mysql
Remove MySQL /MariaDB support --without-pcntl
Build without Process Control support --without-pear
Build without PEAR --HEAD
install HEAD version |
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 | liondeMacBook-Pro:Library lion$ brew install php55 --with-mssql --with-homebrew-openssl --with-homebrew-libxslt --with-homebrew-curl --with-fpm --with-debug --with-gmp --with-imap --with-tidy --with-libmysql ==> Installing dependencies for php55: curl, freetds, gmp ==> Installing php55 dependency: curl ==> Downloading https: //downloads .sf.net /project/machomebrew/Bottles/curl-7 .37.1.mavericks.bottle. tar .gz ######################################################################## 100.0% ==> Pouring curl-7.37.1.mavericks.bottle. tar .gz ==> Caveats This formula is keg-only, which means it was not symlinked into /usr/local . Mac OS X already provides this software and installing another version in parallel can cause all kinds of trouble. Generally there are no consequences of this for you. If you build your own software and it requires this formula, you'll need to add to your build variables:
LDFLAGS: -L /usr/local/opt/curl/l |