[racket-users] Bug with errortrace and begin-for-syntax?

2015-10-09 Thread Alex Knauth
The error below doesn't point to my own code, but to here, in errortrace-lib.rkt: (syntax-case* disarmed-expr (begin-for-syntax module module*) (lambda (a b) (free-identifier=? a b phase 0)) [(begin-for-syntax body ...)

Re: [racket-users] planet questions

2015-10-09 Thread Anurag Mendhekar
Perfect! Thanks! A. On Thursday, October 8, 2015 at 10:17:48 AM UTC-7, Matthew Flatt wrote: > The details below avoid needing "libWN" on install. If you want to > enable tests of other things that need to use "libWN", see "Working > with Native Libraries" here: > > http://pkg-build.racket-lang

[racket-users] Re: raco pkg install behind proxy

2015-10-09 Thread Sean Kemplay
Hi Tim, The net/http-client library (last time I looked) does not currently support SSL tunneling which would be required for ssl connections through a proxy such as squid. net/url builds on net/http-client and also does not have that support. Link to what Squid has to say about tunneling -

[racket-users] raco pkg install behind proxy

2015-10-09 Thread Tim Brown
Folks, I have created a package, which needs to be deployed locally behind a Squid HTTP proxy. My info.rkt has: (define deps (list "db-lib" "web-server-lib" ...)) I want to keep my racket installation as minimal as possible. My initial problem comes because raco doesn’t honour any proxy

[racket-users] Case for net/url.rkt to read HTTP proxy servers from environment

2015-10-09 Thread Tim Brown
Is there any merit in taking the current environment variable values (on UNIX at least) of “proxy”, “http_proxy” and “https_proxy” and loading them by default into current-proxy-servers? (net/url.rkt l.26) Are these even the right variables to go for? What do we think? Tim -- Tim Brown CEng MB