Re: [Chicken-users] chicken+iup+sql-de-lite installer for windows available

2011-01-26 Thread Peter Bex
On Tue, Jan 25, 2011 at 11:58:46PM -0700, Matt Welland wrote: My goal is to eventually have a chicken installer for windows that includes a good range of eggs so that people can give chicken a go without having to wade though the install process. I guess this could be seen as either a good

[Chicken-users] readline egg (OS X 10.6.6 / Chicken 4.6.0)

2011-01-26 Thread David Dreisigmeyer
Using Macports, I had to do the following in order to get the readline egg to install: $ sudo ln -s /opt/local/lib/libreadline.dylib /usr/local/lib/ $ sudo ln -s /opt/local/include/readline/ /usr/local/include/readline The procedure on the wiki didn't work.

Re: [Chicken-users] readline egg (OS X 10.6.6 / Chicken 4.6.0)

2011-01-26 Thread Christian Kellermann
* David Dreisigmeyer dwdreisigme...@gmail.com [110126 12:03]: Using Macports, I had to do the following in order to get the readline egg to install: $ sudo ln -s /opt/local/lib/libreadline.dylib /usr/local/lib/ $ sudo ln -s /opt/local/include/readline/ /usr/local/include/readline The

Re: [Chicken-users] readline egg (OS X 10.6.6 / Chicken 4.6.0)

2011-01-26 Thread David Dreisigmeyer
This version of Chicken is not from Macports, but readline is. I had tried various CSC_OPTIONS in my .profile, e.g.: export CSC_OPTIONS=-L/opt/local/lib -I/opt/local/include export CSC_OPTIONS=-L/opt/local/lib -I/opt/local/include/readline and also using the -rpath flag after your suggestion.

Re: [Chicken-users] readline egg (OS X 10.6.6 / Chicken 4.6.0)

2011-01-26 Thread Peter Bex
On Wed, Jan 26, 2011 at 06:02:12AM -0500, David Dreisigmeyer wrote: Using Macports, I had to do the following in order to get the readline egg to install: $ sudo ln -s /opt/local/lib/libreadline.dylib /usr/local/lib/ $ sudo ln -s /opt/local/include/readline/ /usr/local/include/readline

Re: [Chicken-users] Gazette issue 18

2011-01-26 Thread Felix
After seeing a very silly benchmark (http://call-with-hopeless-continuation.blogspot.com/2010/03/lies-damn-lies-and-benchmarks.html) performed by Mario Domenech Goulart, Bradley Lucier (http://www.math.purdue.edu/~lucier/) started a thread

Re: [Chicken-users] UTF8 egg case conversion problem

2011-01-26 Thread Alex Shinn
On Tue, Jan 25, 2011 at 11:46 PM, Mehmet Kose mehmet.k...@gmail.com wrote: #;13 (use utf8-case-map) #;14 (utf8-string-downcase İ tr) ; this code should return i I Oops, indeed, and if I had actually applied the patch I recommended in my earlier mail this would have worked. Unfortunately I only

Re: [Chicken-users] readline egg (OS X 10.6.6 / Chicken 4.6.0)

2011-01-26 Thread Stephen Eilert
On Wed, Jan 26, 2011 at 8:59 AM, David Dreisigmeyer dwdreisigme...@gmail.com wrote: This version of Chicken is not from Macports, but readline is.  I had tried various CSC_OPTIONS in my .profile, e.g.: export CSC_OPTIONS=-L/opt/local/lib -I/opt/local/include export

Re: [Chicken-users] readline egg (OS X 10.6.6 / Chicken 4.6.0)

2011-01-26 Thread David Dreisigmeyer
That doesn't work either. If you made a symbolic link with homebrew is that the same as doing: $ sudo ln -s /opt/local/lib/libreadline.dylib /usr/local/lib/ $ sudo ln -s /opt/local/include/readline/ /usr/local/include/readline On Wed, Jan 26, 2011 at 10:01 AM, Stephen Eilert spedr...@gmail.com

Re: [Chicken-users] readline egg (OS X 10.6.6 / Chicken 4.6.0)

2011-01-26 Thread Jim Ursetto
David, The readline egg build system (which determines which libraries to use for readline) has been rewritten around 9,996 times and I think a recent change broke it, deleting the code which honored CSC_OPTIONS. I have checked in a fix (again...) to trunk. If you have access, can you try it