On 11-11-06 02:05 AM, Graham Percival wrote:
On Sat, Nov 05, 2011 at 10:29:05PM -0600, Colin Campbell wrote:
This evening, I d/l a copy of the gub source, ran bin/gupdate
--replace gub/specs/curl.py which pulled curl up to version 7.22 so
wow, I had no clue about this
   bin/gupdate --replace
program!

I got crazy and issued bin/gub lilypond-installer.  Regrettably,
after a long session of building things,
but it built curl, right?  If so, then congratulations: you just
fixed a Critical issue.  Send patch in the mail for direct pushing
to GUB.



Attached seems to work, Graham. As I mentioned, the lilypond-installer build still chokes on python, but I've looked through the curl.log and it seems to report ssl as being OK.

Colin


--
I've learned that you shouldn't go through life with a catcher's mitt on both 
hands.
You need to be able to throw something back.
-Maya Angelou, poet (1928- )

>From 4b0999be7d8ada8416febc4044b2917f88523fdd Mon Sep 17 00:00:00 2001
Message-Id: <4b0999be7d8ada8416febc4044b2917f88523fdd.1320618052.git.colinpkcampb...@gmail.com>
From: Colin Campbell <[email protected]>
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

_______________________________________________
bug-lilypond mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to