Created
August 25, 2016 15:19
-
-
Save jbanety/b7fdb2d438ae05254a303323c978788b to your computer and use it in GitHub Desktop.
Build Memcache PHP7 Ext
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install pkg-config libmemcached | |
git clone https://github.com/php-memcached-dev/php-memcached.git | |
cd php-memcached/ | |
git checkout php7 | |
/Applications/MAMP/bin/php/php7.0.8/bin/phpize | |
./configure --disable-memcached-sasl --with-libmemcached-dir=/usr/local/opt/libmemcached | |
make | |
make install | |
echo "extension=memcached.so" >> /Applications/MAMP/bin/php/php7.0.8/conf/php.ini |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment