changeset 6509:51850cb3bb0f

libgc: update url.
author Jan Nieuwenhuizen <janneke@gnu.org>
date Mon, 14 Mar 2016 22:50:00 +0100
parents f5fa403f8bc6
children fc4f6d2163bd
files gub/specs/libgc.py
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/gub/specs/libgc.py	Sat Mar 19 21:39:19 2011 +0100
+++ b/gub/specs/libgc.py	Mon Mar 14 22:50:00 2016 +0100
@@ -2,9 +2,9 @@
 from gub import tools
 
 class Libgc (target.AutoBuild):
-    source = 'http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-7.1.tar.gz'
+    source = 'http://hboehm.info/gc/gc_source/gc-7.1.tar.gz'
     configure_flags = target.AutoBuild.configure_flags + '--enable-threads=pthreads '
-    #source = 'http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc6.8.tar.gz&version=6.8'
+    #source = 'http://hboehm.info/gc/gc_source/gc6.8.tar.gz&version=6.8'
 
 class Libgc__linux (Libgc):
     configure_flags = (Libgc.configure_flags
@@ -14,7 +14,7 @@
     make_flags = 'THREADDLLIBS=-pthread'
 
 class Libgc__freebsd__x86 (Libgc__freebsd):
-    source = 'http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc6.8.tar.gz&version=6.8'
+    source = 'http://hboehm.info/gc/gc_source/gc6.8.tar.gz&version=6.8'
     #patches = ['libgc-6.8-freebsd-x86_64.patch']
 
 class Libgc__mingw (Libgc):
@@ -27,8 +27,8 @@
         'libgc-7.2-mingw-threads.patch',
         ]
     force_autoupdate = True
-    #source = 'http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc6.8.tar.gz&version=6.8'
-    source = 'http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-7.2alpha4.tar.gz&version=7.2.4'
+    #source = 'http://hboehm.info/gc/gc_source/gc6.8.tar.gz&version=6.8'
+    source = 'http://hboehm.info/gc/gc_source/gc-7.2alpha4.tar.gz&version=7.2.4'
 
 class Libgc (tools.AutoBuild, Libgc):
     pass