aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2011-03-14 15:06:12 -0700
committerAdam Vandenberg2011-03-14 15:06:12 -0700
commit502ce4282c26d55215cd0a21fea7d30efd0bc7ff (patch)
tree6923e9dc76a50d0b71da331782e2a5b633cfaf57 /Library/Formula
parentb33b92e2e08b78d38a96c301e8707d79d90d974e (diff)
downloadhomebrew-502ce4282c26d55215cd0a21fea7d30efd0bc7ff.tar.bz2
vips: use system libpng
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/vips.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/vips.rb b/Library/Formula/vips.rb
index fd39ceb7b..0f529321a 100644
--- a/Library/Formula/vips.rb
+++ b/Library/Formula/vips.rb
@@ -16,7 +16,6 @@ class Vips < Formula
depends_on 'glib'
depends_on 'jpeg' => :optional
depends_on 'libtiff' => :optional
- depends_on 'libpng' => :optional
depends_on 'imagemagick' => :optional
depends_on 'fftw' => :optional
depends_on 'little-cms' => :optional
@@ -26,6 +25,7 @@ class Vips < Formula
depends_on 'openexr' => :optional
def install
+ ENV.x11 # for libpng
system "./configure", "--prefix=#{prefix}"
system "make install"
end