[racket-dev] Update libffi to 3.1

2014-10-27 Thread Gustavo Frederico Temple Pedrosa
Hello all, I submitted a commit for updating the libffi, I tested it and it works fine: https://github.com/plt/racket/pull/806 Any suggestion, please talk to me :) Thank you. _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] Update libffi to 3.1

2014-10-27 Thread Jay McCarthy
I am always inclined to update. Is there also some new benefit or feature to 3.1? Jay On Mon, Oct 27, 2014 at 9:29 AM, Gustavo Frederico Temple Pedrosa gustavo.pedr...@eldorado.org.br wrote: Hello all, I submitted a commit for updating the libffi, I tested it and it works fine:

Re: [racket-dev] Update libffi to 3.1

2014-10-27 Thread Gustavo Frederico Temple Pedrosa
Thank you, Jay. Yes, e. g. six new architectures were added and many testsuits have been updated From: Jay McCarthy [mailto:jay.mccar...@gmail.com] Sent: segunda-feira, 27 de outubro de 2014 11:38 To: Gustavo Frederico Temple Pedrosa Cc: dev@racket-lang.org Subject: Re: [racket-dev]

[racket-dev] Release Announcement for v6.1.1

2014-10-27 Thread Ryan Culpepper
The release announcement sketch that I have so far is below. Please mail me new items and/or edits. -- mflatt: - optimizations (most from Gustavo Massaccesi) (82ffd405, 25c05d66, a7a912ee, 1f2f7a1d, d14b4a80, 769c5b6e,

Re: [racket-dev] Release Announcement for v6.1.1

2014-10-27 Thread Matthew Flatt
At Mon, 27 Oct 2014 12:25:22 -0400, Ryan Culpepper wrote: mflatt: - optimizations (most from Gustavo Massaccesi) (82ffd405, 25c05d66, a7a912ee, 1f2f7a1d, d14b4a80, 769c5b6e, 35eb6562, 15423988) - add replace-evt (as suggested by Jan Dvořák) (bc69a9b0) - fixing letrec updates? (eg

Re: [racket-dev] Release Announcement for v6.1.1

2014-10-27 Thread Robby Findler
For me: * Added the drracket/check-syntax library to facilitate check syntax-like behavior in other IDEs * Redex: explained the benchmark programs added a conditional-form to metafunctions * 2htdp/image's notion of equality no longer considers an image's baseline. * Contracts:

Re: [racket-dev] Release Announcement for v6.1.1

2014-10-27 Thread Vincent St-Amour
For TR: * Exception handling changed to be safe. This may break existing programs that rely on unsafe behavior. * Exports from the GUI and framework libraries have types, and can be used transparently from typed programs. * Casts and predicates are supported in typed regions. Vincent

Re: [racket-dev] Release Announcement for v6.1.1

2014-10-27 Thread Neil Toronto
On 10/27/2014 12:25 PM, Ryan Culpepper wrote: neil: - remove dependence on libgtkgl (c601b82f) * For OpenGL on Linux, removed dependence on libgtkgl and added support for core profiles (see `set-legacy?`). Neil ⊥ _ Racket Developers list:

[racket-dev] using module system for alternate namespaces

2014-10-27 Thread Dan Liebgold
I have a namespace behind a particular API. I'd love to hook into the module system to control compilation, visibility, etc. of all the definitions and references. Here's an example. 'a' is available in the top level module even though it was defined by module 'm1' and not provided by any

Re: [racket-dev] using module system for alternate namespaces

2014-10-27 Thread Jay McCarthy
I'm having trouble understanding the problem. In your example, is 'base the namespace API that you have available? It has a way of referencing an identifier and making a binding? And you are looking at a way to take modules like 'm1 (which are really written using this namespace mechanism) and