>From 4b0999be7d8ada8416febc4044b2917f88523fdd Mon Sep 17 00:00:00 2001 Message-Id: From: Colin Campbell Date: Sun, 6 Nov 2011 15:20:23 -0700 Subject: [PATCH] Update curl version and compile with-ssl --- gub/specs/curl.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gub/specs/curl.py b/gub/specs/curl.py index 274b570..f42bbd3 100644 --- a/gub/specs/curl.py +++ b/gub/specs/curl.py @@ -3,10 +3,10 @@ from gub import target from gub import tools class Curl (target.AutoBuild): - source = 'http://curl.haxx.se/download/curl-7.19.0.tar.gz' + source = 'http://curl.haxx.se/download/curl-7.22.0.tar.gz' dependencies = ['tools::libtool'] configure_flags = (tools.AutoBuild.configure_flags - + ' --without-openssl') + + ' --with-ssl') def install (self): target.AutoBuild.install (self) self.system ('mkdir -p %(install_prefix)s%(cross_dir)s/bin') @@ -20,5 +20,5 @@ class Curl (target.AutoBuild): class Curl__tools (tools.AutoBuild, Curl): dependencies = ['libtool'] configure_flags = (tools.AutoBuild.configure_flags - + ' --without-openssl') + + ' --with-ssl') -- 1.7.5.4