Package: gauche
Version: 0.8.7-3
Severity: important

gauche-gl package cannot be built with new version 0.8.7.
It is because new version quotes much more than needed.

Could you please consider to include following patch in gauche?
This problem has been reported to upstream already.

You can reproduce this bug when you get gauche-gl package and build it.

--- Gauche-0.8.7/lib/gauche/package/compile.scm~        2006-05-26 
13:23:15.000000000 +0900
+++ Gauche-0.8.7/lib/gauche/package/compile.scm 2006-05-28 09:36:42.000000000 
+0900
@@ -87,7 +87,7 @@
   (run #`"',GOSH' genstub ,stubfile"))
       
 (define (do-compile cc cfile ofile cppflags cflags)
-  (run #`"',cc' -c ,cppflags ,INCDIR ,cflags ,CFLAGS -o ',ofile' ',cfile'"))
+  (run #`",cc -c ,cppflags ,INCDIR ,cflags ,CFLAGS -o ',ofile' ',cfile'"))
 
 (define (gauche-package-link sofile ofiles . args)
   (let-keywords* args ((ldflags #f)
@@ -100,7 +100,7 @@
       (unless (and (file-exists? sofile)
                    (every (cut file-mtime>? sofile <>) ofiles))
         (let1 all-ofiles (string-join (map (lambda (f) #`"',f'") ofiles) " ")
-          (run #`"',(or ld CC)' ,(or ldflags \"\") ,LIBDIR ,LDFLAGS ,sofile 
,all-ofiles ,LIBS ,(or libs \"\")"))))))
+          (run #`",(or ld CC) ,(or ldflags \"\") ,LIBDIR ,LDFLAGS ,sofile 
,all-ofiles ,LIBS ,(or libs \"\")"))))))
 
 (define (gauche-package-compile-and-link module-name files . args)
   (let ((head.c #`",|module-name|_head.c")


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to