# HG changeset patch # User Jan Nieuwenhuizen # Date 1457992200 -3600 # Node ID 51850cb3bb0fa52babbbbc85f8af99e8471b9319 # Parent f5fa403f8bc6a2d0127184e3d1ea89d8de883f68 libgc: update url. diff -r f5fa403f8bc6 -r 51850cb3bb0f gub/specs/libgc.py --- 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