changeset 6446:aca315bf607b

tools::libgc: proper package.
author Jan Nieuwenhuizen <janneke@gnu.org>
date Sat, 29 Jan 2011 16:38:55 +0100
parents 64050ee2dd8a
children 302dc1c206fe
files gub/specs/libgc.py
diffstat 1 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/gub/specs/libgc.py	Mon Feb 28 11:46:07 2011 +0100
+++ b/gub/specs/libgc.py	Sat Jan 29 16:38:55 2011 +0100
@@ -1,9 +1,10 @@
 from gub import target
+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'
     configure_flags = target.AutoBuild.configure_flags + ' --enable-threads=pthreads'
-    #source = 'http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-7.1.tar.gz'
-    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/gc6.8.tar.gz&version=6.8'
 
 class Libgc__freebsd (Libgc):
     make_flags = 'THREADDLLIBS=-pthread'
@@ -21,3 +22,6 @@
         ]
     force_autoupdate = True
     source = 'http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc6.8.tar.gz&version=6.8'
+
+class Libgc (tools.AutoBuild, Libgc):
+    pass