aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2010-05-24 10:55:06 -0700
committerAdam Vandenberg2010-05-24 10:55:06 -0700
commit6a002ea17bfb09387f4a92ce9fb6c37737157571 (patch)
tree7bbd32374dae31fe44d466e5f39eb31d91add4de /Library/Formula
parent2234784bdf7085f3d4dbb678296a47dddd0d6d19 (diff)
downloadhomebrew-6a002ea17bfb09387f4a92ce9fb6c37737157571.tar.bz2
Enable ssl in sitecopy (via shaug).
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/sitecopy.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Formula/sitecopy.rb b/Library/Formula/sitecopy.rb
index 7dd3236cd..8987d9088 100644
--- a/Library/Formula/sitecopy.rb
+++ b/Library/Formula/sitecopy.rb
@@ -6,7 +6,10 @@ class Sitecopy <Formula
md5 'b3aeb5a5f00af3db90b408e8c32a6c01'
def install
- system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--with-libxml2",
+ "--with-ssl"
system "make install"
end
end