diff options
| author | Jack Nagel | 2014-02-04 10:58:22 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-02-04 11:02:29 -0500 | 
| commit | 8a888cf1cf2fc1486b94ce3b3aa392b721d2ab83 (patch) | |
| tree | c588d87bbfb1c908111af3e9276c4f9ee1310ad9 /Library/Formula/poppler.rb | |
| parent | bffeecf8aeedd8a164725a55b36a34a887734d39 (diff) | |
| download | homebrew-8a888cf1cf2fc1486b94ce3b3aa392b721d2ab83.tar.bz2 | |
poppler: enable splash backend by default
The splash backend is enabled by default, but it was made into an
explicit option in 42b31c4981c6c02749217dc9b7181a9f260dc823. This
resulted in it being *disabled* unless the option was passed, which
broke (at least) pdf2htmlex, which expects this functionality to be
present.
Fixes #26373.
Diffstat (limited to 'Library/Formula/poppler.rb')
| -rw-r--r-- | Library/Formula/poppler.rb | 2 | 
1 files changed, 0 insertions, 2 deletions
diff --git a/Library/Formula/poppler.rb b/Library/Formula/poppler.rb index 44457ce0a..8e1ffd9c9 100644 --- a/Library/Formula/poppler.rb +++ b/Library/Formula/poppler.rb @@ -8,7 +8,6 @@ class Poppler < Formula    option 'with-qt4', 'Build Qt backend'    option 'with-glib', 'Build Glib backend' # requires cairo    option 'with-lcms2', 'Use color management system' -  option 'with-splash-output', 'Build with Splash output backend'    depends_on 'pkg-config' => :build    depends_on 'xz' => :build @@ -48,7 +47,6 @@ class Poppler < Formula      args << ( build.with?('glib') ? '--enable-poppler-glib' : '--disable-poppler-glib' )      args << ( build.with?('glib') ? '' : '--disable-cairo-output' )      args << ( build.with?('lcms2') ? '--enable-cms=lcms2' : '' ) -    args << ( build.with?('splash-output') ? '' : '--disable-splash-output' )      system "./configure", *args      system "make install"  | 
