aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorCharlie Sharpsteen2012-08-18 17:41:16 -0700
committerCharlie Sharpsteen2012-08-18 17:41:16 -0700
commit7d3f4f1ef168eacc859266309143394fdc942271 (patch)
tree06ea19d8194466069f62932fb53710a4040ce368 /Library
parent90566ca75086ac0bda2d2a860bf941ce75a3a347 (diff)
downloadhomebrew-7d3f4f1ef168eacc859266309143394fdc942271.tar.bz2
imagemagick: Install C++ interface by default.
Reasons: - It only adds 10 seconds to a deparallelized make job. - We do it for GraphicsMagick A new option, `--without-magick-plus-plus` has been added for those who wish to leave the C++ interface out. Fixes #13559.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/imagemagick.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/imagemagick.rb b/Library/Formula/imagemagick.rb
index 65ed4a331..093898d4d 100644
--- a/Library/Formula/imagemagick.rb
+++ b/Library/Formula/imagemagick.rb
@@ -64,7 +64,7 @@ class Imagemagick < Formula
['--use-exr', 'Compile with openexr support.'],
['--disable-openmp', 'Disable OpenMP.'],
['--enable-hdri', 'Compile with HDRI support enabled'],
- ['--with-magick-plus-plus', 'Compile with C++ interface.'],
+ ['--without-magick-plus-plus', "Don't compile C++ interface."],
['--with-quantum-depth-8', 'Compile with a quantum depth of 8 bit'],
['--with-quantum-depth-16', 'Compile with a quantum depth of 16 bit'],
['--with-quantum-depth-32', 'Compile with a quantum depth of 32 bit'],
@@ -84,7 +84,7 @@ class Imagemagick < Formula
args << "--without-gslib" unless ARGV.include? '--with-ghostscript'
args << "--with-gs-font-dir=#{HOMEBREW_PREFIX}/share/ghostscript/fonts" \
unless ghostscript_srsly? or ghostscript_fonts?
- args << "--without-magick-plus-plus" unless ARGV.include? '--with-magick-plus-plus'
+ args << "--without-magick-plus-plus" if ARGV.include? '--without-magick-plus-plus'
args << "--enable-hdri=yes" if ARGV.include? '--enable-hdri'
if ARGV.include? '--with-quantum-depth-32'