changeset 6242:bc5e7ff7d734

Update GMP and MPFR
author Phil Holmes <mail@philholmes.net>
date Wed, 15 Oct 2014 10:36:19 +0100
parents b8d258e3350a
children c98d8d7eb559 f151574c501d
files gub/specs/gmp.py gub/specs/mpfr.py
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/gub/specs/gmp.py	Tue Oct 14 15:48:55 2014 +0100
+++ b/gub/specs/gmp.py	Wed Oct 15 10:36:19 2014 +0100
@@ -6,7 +6,7 @@
 from gub import tools
 
 class Gmp (target.AutoBuild):
-    source = 'http://ftp.gnu.org/pub/gnu/gmp/gmp-4.2.1.tar.gz'
+    source = 'http://ftp.gnu.org/pub/gnu/gmp/gmp-5.1.3.tar.gz'
     def __init__ (self, settings, source):
         target.AutoBuild.__init__ (self, settings, source)
         if not self.settings.platform.startswith ('darwin'):
@@ -44,7 +44,7 @@
     source = 'http://ftp.gnu.org/pub/gnu/gmp/gmp-4.2.4.tar.gz'
 
 class Gmp__mingw (Gmp):
-    patches = ['gmp-4.1.4-1.patch']
+    patches = []
     def __init__ (self, settings, source):
         Gmp.__init__ (self, settings, source)
         # Configure (compile) without -mwindows for console
--- a/gub/specs/mpfr.py	Tue Oct 14 15:48:55 2014 +0100
+++ b/gub/specs/mpfr.py	Wed Oct 15 10:36:19 2014 +0100
@@ -1,5 +1,5 @@
 from gub import tools
 
 class Mpfr__tools (tools.AutoBuild):
-    source = 'http://www.mpfr.org/mpfr-2.3.2/mpfr-2.3.2.tar.gz'
+    source = 'http://www.mpfr.org/mpfr-3.1.2/mpfr-3.1.2.tar.gz'
     dependencies = ['libtool', 'gmp']