Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bin/compile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ BUILD_DIR=$1
CACHE_DIR=$2
VENDOR_DIR="$BUILD_DIR/vendor"
INSTALL_DIR="$VENDOR_DIR/imagemagick"
IMAGE_MAGICK_VERSION="${IMAGE_MAGICK_VERSION:-6.9.9-42}"
IMAGE_MAGICK_VERSION="${IMAGE_MAGICK_VERSION:-6.9.10-40}"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be 6.9.10-46 nowadays.

CACHE_FILE="$CACHE_DIR/imagemagick-$IMAGE_MAGICK_VERSION.tar.gz"

if [ ! -f $CACHE_FILE ]; then
Expand All @@ -34,7 +34,7 @@ if [ ! -f $CACHE_FILE ]; then
cd $IMAGE_MAGICK_DIR
export CPPFLAGS="-I$INSTALL_DIR/include"
export LDFLAGS="-L$INSTALL_DIR/lib"
./configure --prefix=$INSTALL_DIR
./configure --prefix=$INSTALL_DIR --without-gvc
make && make install
cd ..
rm -rf $IMAGE_MAGICK_DIR
Expand Down