aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jpeg.rb
diff options
context:
space:
mode:
authorJacob Magnusson2011-07-31 01:46:09 +0200
committerAdam Vandenberg2011-07-31 16:44:06 -0700
commitbd117369d5ef94e353074a67e1b580383995637c (patch)
tree256fda486b3f4d4fe2640eee229dfdbe2d69df76 /Library/Formula/jpeg.rb
parent2f2e05ab9c901df62c6e414ab0a2253ca23848c3 (diff)
downloadhomebrew-bd117369d5ef94e353074a67e1b580383995637c.tar.bz2
jpeg: add explicit shared/static configure flags
These flags are needed for proper compilation on Lion. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/jpeg.rb')
-rw-r--r--Library/Formula/jpeg.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/jpeg.rb b/Library/Formula/jpeg.rb
index abbb0fd72..1f2d041bf 100644
--- a/Library/Formula/jpeg.rb
+++ b/Library/Formula/jpeg.rb
@@ -8,7 +8,7 @@ class Jpeg < Formula
def install
ENV.universal_binary
- system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
+ system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking", "--enable-shared", "--enable-static"
system "make install"
end
end