From cf25c0546bc30f1e3f94243bf42e4b1dff6f6c52 Mon Sep 17 00:00:00 2001 From: Silvio Date: Wed, 10 Jan 2018 12:31:53 +0100 Subject: [PATCH] Adding --without-gvc flag to configure As per https://github.com/ello/heroku-buildpack-imagemagick/pull/17#issuecommen t-352130869 --- bin/compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 bin/compile diff --git a/bin/compile b/bin/compile old mode 100644 new mode 100755 index 3c677c8..c873452 --- a/bin/compile +++ b/bin/compile @@ -37,7 +37,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