Skip to content

Commit

Permalink
Merge branch '3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
crynobone committed Mar 18, 2015
2 parents dec559f + 5947fa2 commit b073ab5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/travis/gmagick.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ phpize;
./configure --with-gmagick=/usr/local;
make -j;
sudo make install;
echo "extension=gmagick.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`;
echo "extension=gmagick.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
php --ri gmagick;
8 changes: 4 additions & 4 deletions tests/travis/imagick.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
wget http://www.imagemagick.org/download/releases/ImageMagick-6.8.9-7.tar.gz;
tar xzf ImageMagick-6.8.9-7.tar.gz;
cd ImageMagick-6.8.9-7;
wget http://www.imagemagick.org/download/ImageMagick-6.9.0-10.tar.gz;
tar xzf ImageMagick-6.9.0-10.tar.gz;
cd ImageMagick-6.9.0-10;
./configure --prefix=/opt/imagemagick;
make -j;
sudo make install;
Expand All @@ -14,5 +14,5 @@ phpize;
./configure --with-imagick=/opt/imagemagick;
make -j;
sudo make install;
echo "extension=imagick.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`;
echo "extension=imagick.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
php --ri imagick;

0 comments on commit b073ab5

Please sign in to comment.