Re: [Ecls-list] Release ready

2011-01-17 Thread Marko Kocić
Hi Juan, I can confirm that libffi on mingw now works fine after moving it to CORE_LIBS. I have yet to confirm that this also fixes Gentoo build. Also, requiring asdf problem similar to one Stas reported dissapeared. As a side note, I was able to quickload lispbuilder-sdl on mingw using Ecl for

Re: [Ecls-list] Release ready

2011-01-17 Thread Marko Kocić
This links might be interesting: http://www.metabang.com/unclog/otherpag/asdfinst.html http://bc.tech.coop/blog/051012.html http://bc.tech.coop/blog/060108.html They describe dependencies between libraries, alhout those are a bit out of date, but it clearly identifies key libraries used by

Re: [Ecls-list] Release ready

2011-01-16 Thread Stas Boukarev
Stas Boukarev stass...@gmail.com writes: Juan Jose Garcia-Ripoll juanjose.garciarip...@googlemail.com writes: Hi everybody, Regarding Stas Boukarev's problems with require-ing ASDF and compiling a test file that defines the ASDF package, I could not reproduce it in any system with a clean

Re: [Ecls-list] Release ready

2011-01-16 Thread Juan Jose Garcia-Ripoll
Thanks for identifying the problem. It seems that the uninitialized variable was only detected by gcc 4.5, while all other compilers I used (4.4. 4.0, 3.something) ignored that. I already uploaded the fix. Juanjo -- Instituto de Física Fundamental, CSIC c/ Serrano, 113b, Madrid 28006 (Spain)

Re: [Ecls-list] Release ready

2011-01-16 Thread Matthew Mondor
On Sun, 16 Jan 2011 19:16:23 +0100 Juan Jose Garcia-Ripoll juanjose.garciarip...@googlemail.com wrote: The patch for etags and the fix for the Makefile were committed today. Some changes were needed to make it work on other makes I confirm these fixed it for me. Thanks! -- Matt

Re: [Ecls-list] Release ready

2011-01-15 Thread Stas Boukarev
Juan Jose Garcia-Ripoll juanjose.garciarip...@googlemail.com writes: I had to fix a number of bugs that were submitted during the last days. Unless somebody complains very loud (please, no! :-) I will tag and upload the 11.1.1 release this weekend. When doing (require 'asdf) I get ;;; Loading

Re: [Ecls-list] Release ready

2011-01-15 Thread Juan Jose Garcia-Ripoll
Configuration flags? Platform? Sent from my iPod On Jan 15, 2011, at 10:42 AM, Stas Boukarev stass...@gmail.com wrote: Juan Jose Garcia-Ripoll juanjose.garciarip...@googlemail.com writes: I had to fix a number of bugs that were submitted during the last days. Unless somebody complains very

Re: [Ecls-list] Release ready

2011-01-15 Thread Stas Boukarev
Juan Jose Garcia-Ripoll juanjose.garciarip...@googlemail.com writes: Configuration flags? Platform? Interestingly, the following succeeds: (make-package ASDF) #ASDF package (require 'asdf) ;;; Loading #P/usr/local/lib/ecl-11.1.1/asdf.fas ;;; Loading #P/usr/local/lib/ecl-11.1.1/cmp.fas (ASDF

Re: [Ecls-list] Release ready

2011-01-15 Thread Stas Boukarev
Juan Jose Garcia-Ripoll juanjose.garciarip...@googlemail.com writes: Configuration flags? Platform? Digging further: Given file ;;; (eval-when (:compile-toplevel :load-toplevel :execute) (unless (find-package :asdf) (make-package :asdf :use '(:cl (in-package :asdf) (print 'foo) ;;;