Re: [racket-dev] --enable-macprefix gone?

2010-10-20 Thread Matthew Flatt
At Wed, 20 Oct 2010 00:03:33 -0400, Eli Barzilay wrote:
 About a minute ago, David Van Horn wrote:
  On 10/19/10 10:03 PM, Eli Barzilay wrote:
   9 hours ago, David Van Horn wrote:
   Has the --enable-macprefix option been removed from the configure
   script?  When I configure, I get:
  
configure: WARNING: unrecognized options: --enable-macprefix
  
   If so, the src/README file should be updated to reflect the change.
  
   You should have this code in the configure script:
  
  Yep -- the code's there, and if I omit the option the script gives
  an error saying it's needed in order to use --prefix.  So why do I
  see an unrecognized option warning when I provide
  --enable-macprefix?
 
 All options are passed to sub-configure script calls -- you'll see
 similar warnings with other flags.  I don't know if there's a way to
 disable passing specific arguments this way.

None that I've figured out.

In other words, ignore that warning. It's a sub-configure script
complaining that it doesn't recognize a flag intended for the main
configure script.


_
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev


Re: [racket-dev] Release for v5.0.2 has begun

2010-10-20 Thread Doug Williams
I downloaded the pre-release version this morning - 10/20 (I believe it was
a build from 10/16). The plot package and plot extensions in the science
collection all work as expected. But, I am getting different numeric answers
for some of my science collection routines (for example, the gamma function)
and some of my newer code (for example, FFT) either fails with an error
message or DrRacket just dies. All of this code uses unsafe operations and
the problem may lie there somewhere. I'll try digging more deeply this
evening.

Doug

On Sat, Oct 16, 2010 at 6:53 PM, Ryan Culpepper ry...@ccs.neu.edu wrote:

 The release process for v5.0.2 has begun: the `release' branch was
 created for any work that is left and is now bumped to v5.0.1.900.  You
 can go on using the `master' branch as usual, it is now bumped to
 v5.0.2.1 (to avoid having two different trees with the same version).

 If you have any bug-fixes and changes that need to go in the release
 then make sure to specify that in the commit message or mail me the
 commit SHA1s.  You can `git checkout release' to try it out directly if
 needed -- but do not try to push commits on it (the server will forbid
 it).

 Note that nightly builds will go on as usual (as v5.0.2.1), and
 pre-release builds will be available shortly at

  http://pre.racket-lang.org/release/

 Please tell me if you think that this should be announced on the
 users list for wider testing.
 --
 Ryan Culpepper
 _
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev

_
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev

Re: [racket-dev] Release for v5.0.2 has begun

2010-10-20 Thread Matthias Felleisen

Are they typed? 


On Oct 20, 2010, at 10:39 AM, Doug Williams wrote:

 I downloaded the pre-release version this morning - 10/20 (I believe it was a 
 build from 10/16). The plot package and plot extensions in the science 
 collection all work as expected. But, I am getting different numeric answers 
 for some of my science collection routines (for example, the gamma function) 
 and some of my newer code (for example, FFT) either fails with an error 
 message or DrRacket just dies. All of this code uses unsafe operations and 
 the problem may lie there somewhere. I'll try digging more deeply this 
 evening.
 
 Doug
 
 On Sat, Oct 16, 2010 at 6:53 PM, Ryan Culpepper ry...@ccs.neu.edu wrote:
 The release process for v5.0.2 has begun: the `release' branch was
 created for any work that is left and is now bumped to v5.0.1.900.  You
 can go on using the `master' branch as usual, it is now bumped to
 v5.0.2.1 (to avoid having two different trees with the same version).
 
 If you have any bug-fixes and changes that need to go in the release
 then make sure to specify that in the commit message or mail me the
 commit SHA1s.  You can `git checkout release' to try it out directly if
 needed -- but do not try to push commits on it (the server will forbid
 it).
 
 Note that nightly builds will go on as usual (as v5.0.2.1), and
 pre-release builds will be available shortly at
 
  http://pre.racket-lang.org/release/
 
 Please tell me if you think that this should be announced on the
 users list for wider testing.
 --
 Ryan Culpepper
 _
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev
 
 _
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev

_
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev


Re: [racket-dev] Release for v5.0.2 has begun

2010-10-20 Thread John Clements

On Oct 20, 2010, at 7:39 AM, Doug Williams wrote:

 I downloaded the pre-release version this morning - 10/20 (I believe it was a 
 build from 10/16). The plot package and plot extensions in the science 
 collection all work as expected. But, I am getting different numeric answers 
 for some of my science collection routines (for example, the gamma function) 
 and some of my newer code (for example, FFT) either fails with an error 
 message or DrRacket just dies. All of this code uses unsafe operations and 
 the problem may lie there somewhere. I'll try digging more deeply this 
 evening.

Focus first on uses of unsafe-vector-ref and unsafe-vector-set!. (Not the fx 
and fl variants, just the plain ones).  I wound up removing these from the FFT 
code in order to get it to work.  

Check out bug PR 11264. 

Also, very late flash of insight: my response (getting rid of unsafe-vector-ref 
and unsafe-vector-set!) might explain my performance issues with the FFT 
library.

John



 Doug
 
 On Sat, Oct 16, 2010 at 6:53 PM, Ryan Culpepper ry...@ccs.neu.edu wrote:
 The release process for v5.0.2 has begun: the `release' branch was
 created for any work that is left and is now bumped to v5.0.1.900.  You
 can go on using the `master' branch as usual, it is now bumped to
 v5.0.2.1 (to avoid having two different trees with the same version).
 
 If you have any bug-fixes and changes that need to go in the release
 then make sure to specify that in the commit message or mail me the
 commit SHA1s.  You can `git checkout release' to try it out directly if
 needed -- but do not try to push commits on it (the server will forbid
 it).
 
 Note that nightly builds will go on as usual (as v5.0.2.1), and
 pre-release builds will be available shortly at
 
  http://pre.racket-lang.org/release/
 
 Please tell me if you think that this should be announced on the
 users list for wider testing.
 --
 Ryan Culpepper
 _
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev
 
 _
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev



smime.p7s
Description: S/MIME cryptographic signature
_
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev

[racket-dev] BSL, test: bad syntax

2010-10-20 Thread David Van Horn

Are others aware of this?

   Welcome to DrRacket, version 5.0.2.1--2010-08-25(-/f) [3m].
   Language: Beginning Student; memory limit: 512 MB.
5
   5
   test: bad syntax

David
_
 For list-related administrative tasks:
 http://lists.racket-lang.org/listinfo/dev


Re: [racket-dev] BSL, test: bad syntax

2010-10-20 Thread David Van Horn

On 10/20/10 10:53 AM, David Van Horn wrote:

Are others aware of this?

Welcome to DrRacket, version 5.0.2.1--2010-08-25(-/f) [3m].
Language: Beginning Student; memory limit: 512 MB.
  5
5
test: bad syntax


Er, I just rebuilt from git, so something is wrong on my end given the 
2010-08-25 date; maybe this is just my issue.


David
_
 For list-related administrative tasks:
 http://lists.racket-lang.org/listinfo/dev


[racket-dev] F1 on latest release

2010-10-20 Thread Matthias Felleisen

F1 doesn't work on a recent git: 

browser-run: process execute failed: '(#path:/usr/bin/osascript -e open 
location 
\file:///Users/matthias/Library/Racket/5.0.1.8/doc/search/search-context.html?q=read-htmlhq=O%3A%7B%20L%3Alang%2Fhtdp-beginner-abbr%20T%3Ateachpack%20%7Dlabel=Beginning%20Student%20with%20List%20Abbrev...

Anyone else with this problem? 
_
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev


Re: [racket-dev] F1 on latest release

2010-10-20 Thread Hari Prashanth
I have seen this before... If I remember correctly, it happened after 
using raco fileinject and raco remove several times... I just 
removed .racket directory and it went away... I could not reproduce 
the problem, so I did not report it...

Hari

- Original Message -
From: Matthias Felleisen matth...@ccs.neu.edu
To: plt-dev Developers d...@lists.racket-lang.org
Sent: Wednesday, October 20, 2010 11:22:35 PM GMT -05:00 US/Canada Eastern
Subject: [racket-dev] F1 on latest release


F1 doesn't work on a recent git: 

browser-run: process execute failed: '(#path:/usr/bin/osascript -e open 
location 
\file:///Users/matthias/Library/Racket/5.0.1.8/doc/search/search-context.html?q=read-htmlhq=O%3A%7B%20L%3Alang%2Fhtdp-beginner-abbr%20T%3Ateachpack%20%7Dlabel=Beginning%20Student%20with%20List%20Abbrev...

Anyone else with this problem? 
_
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev
_
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev