Re: SLIB

2007-09-02 Thread Rob Browning
Kevin Ryde <[EMAIL PROTECTED]> writes: > Yep. Rob worked on that, or on slib.scm loading guile.init at least. > He checked-in an slib.scm along those lines into the 1.6 branch, > > > http://cvs.savannah.gnu.org/viewvc/guile/guile-core/ice-9/slib.scm?revision=1.32.2.10&root=guile&view=markup&

Re: Switching to Git?

2007-09-02 Thread Rob Browning
[EMAIL PROTECTED] (Ludovic Courtès) writes: > Hi, > > How about switching from CVS to Git [0]? I'd probably lean in favor. I've tried quite a few of the RCS systems[1], and I now use git for all my local work. So far, I've been extremely pleased, though I haven't yet used it heavily when workin

Re: scm_cell vs threads build option

2007-09-02 Thread Rob Browning
Kevin Ryde <[EMAIL PROTECTED]> writes: > I gave Rob's new debian packaged 1.8.2 a go and found a bit of a problem > with scm_cell. The new packages have threads enabled, where the old > ones had it disabled, and alas that setting infects the inlined > scm_cell(). If you built your app against th

Unaligned memory accesses

2007-09-02 Thread Ludovic Courtès
Hi, I just committed the attached patch, which fixes unaligned accesses in `socket.c' (notably, `accept' would randomly yield a "bus error" on SPARC). The trick is to use unions to allow the compiler to suitably align variables. Trying to compile with `-Wcast-align' (on SPARC) is instructive. T