Skip to content

Commit

Permalink
remove ssl as a package
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu authored and Ubuntu committed Feb 15, 2010
1 parent a8b552d commit 80484fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions lib/buildphp/packages/apache.rb
Expand Up @@ -12,7 +12,7 @@ def initialize

def package_depends_on
[
'openssl',
# 'openssl',
'zlib',
]
end
Expand All @@ -39,7 +39,6 @@ def get_build_string
"--with-included-apr",
"--enable-mods-shared=all",
"--enable-ssl",
"--with-ssl=#{FACTORY['Openssl'].prefix}",
"--with-z=#{FACTORY['Zlib'].prefix}",
]
parts.join(' ')
Expand Down
4 changes: 2 additions & 2 deletions lib/buildphp/packages/curl.rb
Expand Up @@ -41,7 +41,7 @@ def get_build_string
parts << './configure'
parts << "--with-pic" if RUBY_PLATFORM.index("x86_64") != nil
parts << "--prefix=#{@prefix}"
# parts << "--with-ssl=#{FACTORY['openssl'].prefix}"
parts << "--with-ssl"
parts << "--with-zlib=#{FACTORY['zlib'].prefix}"
parts.join(' ')
end
Expand All @@ -51,4 +51,4 @@ def is_installed
end
end
end
end
end

0 comments on commit 80484fe

Please sign in to comment.