summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/test/bin/install_php_memcache.sh
blob: dd046a56ef0bce967168deeb361ef59d219cf57f (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

# Build and install PHP Memcache extension
wget http://pecl.php.net/get/memcache-${MEMCACHE_VER}.tgz
tar -xzf memcache-${MEMCACHE_VER}.tgz
sh -c "cd memcache-${MEMCACHE_VER} && phpize && ./configure --enable-memcache && make && sudo make install"
echo "extension=memcache.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`