Re: [Chicken-hackers] [PATCH] Fix for Windows quoting issues (fixes #1515)

2018-09-06 Thread felix . winkelmann
> OK, attached is a new patch that keeps slashification where it was > already present (except for shell variables; those don't have to be > quoted or slashified). I decided to move the slashification into "qs*" > so that it's easier to add or remove slashification on any given call. > > From a q

[Chicken-hackers] [PATCH] Use arc4random_buf on FreeBSD/DragonFly

2018-09-06 Thread felix . winkelmann
Should be self-explaining... felix From 2269c7c18dbe905fa0c21d7c72b4d63299391e3f Mon Sep 17 00:00:00 2001 From: felix Date: Thu, 6 Sep 2018 12:25:20 +0200 Subject: [PATCH] Use arc4random_buf(3) on FreeBSD + DragonFly --- runtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --g

Re: [Chicken-hackers] [PATCH] Use arc4random_buf on FreeBSD/DragonFly

2018-09-06 Thread Christian Kellermann
* felix.winkelm...@bevuta.com [180906 12:27]: > Should be self-explaining... I would delay this patch. I did look up FreeBSD's code base and it seems that they have importet OpenBSD's version 18 days ago, according to https://github.com/freebsd/freebsd/blob/master/lib/libc/gen/arc4random.c The o

Re: [Chicken-hackers] [PATCH] Fix parallel build

2018-09-06 Thread kooda
Tobias Kortkamp wrote: > Hi, > > attempting to build 5.0.0rc1 in parallel (with something like gmake > -j4 on FreeBSD) fails Hi! :) Sorry but parallel build is not supported so far. See the README: https://code.call-cc.org/cgi-bin/gitweb.cgi?p=chicken-core.git;a=blob;f=README;h=b43503c347c6a65

[Chicken-hackers] build error w/ clang on macos

2018-09-06 Thread Kon Lovett
(sorry, under the weather, or i would investigate) this doesn’t look right: clang: error: unsupported option '-b undle -headerpad_max_install_names’ last commit in local repo is: commit dc07113cf79a1930c6a109c738138dbea15afbc0 (HEAD -> master, origin/master, origin/HEAD)

Re: [Chicken-hackers] build error w/ clang on macos

2018-09-06 Thread Peter Bex
On Thu, Sep 06, 2018 at 07:20:43AM -0700, Kon Lovett wrote: > (sorry, under the weather, or i would investigate) > > this doesn’t look right: > > clang: error: unsupported option '-b undle -headerpad_max_install_names’ > > last commit in local repo is: > > commit dc07113cf79a1930c6a

Re: [Chicken-hackers] build error w/ clang on macos

2018-09-06 Thread Peter Bex
On Thu, Sep 06, 2018 at 04:52:29PM +0200, Peter Bex wrote: > Ah of course. Thanks for reporting! > > It seems that this is caused by the fix for #1515, and apparently on Mac OS > we were relying on the bogus behaviour that strings were just spliced into > the arguments list. Could you try the at

Re: [Chicken-hackers] build error w/ clang on macos

2018-09-06 Thread felix . winkelmann
> On Thu, Sep 06, 2018 at 04:52:29PM +0200, Peter Bex wrote: > > Ah of course. Thanks for reporting! > > > > It seems that this is caused by the fix for #1515, and apparently on Mac OS > > we were relying on the bogus behaviour that strings were just spliced into > > the arguments list. Could yo