Re: [Chicken-hackers] [PATCH] Update copyright year to 2014

2014-01-03 Thread John Cowan
Peter Bex scripsit: > I used the same script as last time, with 2012 and 2013 replaced with > 2013 and 2014: Please reconsider this patch! Since "The Chicken Team" is not a legal person (corporation), the copyright will expire 70 years after the death of the last contributor, no matter what date

Re: [Chicken-hackers] [PATCH] fix: eval.scm: use soname only with when USES_SONAME present

2014-01-03 Thread Christian Kellermann
* Kristian Lein-Mathisen [140103 15:38]: > (define dynamic-load-libraries >(let ((ext > - (if (and (memq (software-version) '(linux netbsd openbsd freebsd)) > - (not (zero? binary-version))) ; allow "configless" build /--

Re: [Chicken-hackers] [PATCH] [LONG] Fix (hopefully) for #1068

2014-01-03 Thread Christian Kellermann
* Peter Bex [131229 20:12]: > Since I'm having some problems with my laptop I'm on a slow machine > right now, so I can't do extensive testing or benchmarking. It would > be great if someone looking at this patch could perform a quick > Salmonella run to see if no other eggs are broken, and run a

[Chicken-hackers] [PATCH] Update copyright year to 2014

2014-01-03 Thread Peter Bex
Hi all, A mostly trivial patch. I'm just sending it because it touches nearly every file, and so people can double-check that I didn't forget anything. Cheers, Peter -- http://www.more-magic.net >From 026d0d420daadc434e4474c12dcecaac3fad3ddc Mon Sep 17 00:00:00 2001 From: Peter Bex Date: Fri,

[Chicken-hackers] [PATCH] fix: eval.scm: use soname only with when USES_SONAME present

2014-01-03 Thread Kristian Lein-Mathisen
Hi folks, In the process of trying to ease the Android build cycle, I stumbled across sonames. I don't know what they are or what they do, but I know Android doesn't like them. In eval.scm, the binary version number is appended on all linux software-versions, which includes Android. This patch tr