Re: [Chicken-users] Re: Trac moving to new server

2009-04-06 Thread Ivan Raikov

  I have set up a Trac instance that is synchronized with the Chicken
SVN repository; however, it is installed on the web server of my
institute, because currently we do not have an available public IP
address. I will be happy to administer this Trac instance, and I can
be sure that any downtime will be minimized, because I have
administrative access to the machine it runs on; however, I cannot use
a Chicken-related domain name for it. If this is acceptable, we can
make my Trac instance the primary one. 

   -Ivan

felix winkelmann bunny...@gmail.com writes:

 Hi!

 Thanks, Arto. I must admit that I'm not using the trac anymore - it is
 often not reachable (usually when I needed it most). Ivan is going
 to set up a new one on a dedicated server. Will we still need the
 current trac instance? What do others think?


___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] Ann.: CHICKEN 4.0.0 released

2009-04-06 Thread Peter Bex
On Mon, Apr 06, 2009 at 01:26:25AM +0200, felix winkelmann wrote:
 Yo!
 
 Version 4.0.0 of CHICKEN, the portable and practical Scheme system has
 been released. In addition to many bugfixes and cleaning up, it
 provides the following significant changes:

Congratulations on this fine release!

Cheers,
Peter
-- 
http://sjamaan.ath.cx
--
The process of preparing programs for a digital computer
 is especially attractive, not only because it can be economically
 and scientifically rewarding, but also because it can be an aesthetic
 experience much like composing poetry or music.
-- Donald Knuth


pgpQkGjrqkzyj.pgp
Description: PGP signature
___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] Re: Trac moving to new server

2009-04-06 Thread Elf


As soon as I can get ahold of Eric, we can give it one (or more) chicken 
domain names :)


-elf

On Mon, 6 Apr 2009, Ivan Raikov wrote:



 I have set up a Trac instance that is synchronized with the Chicken
SVN repository; however, it is installed on the web server of my
institute, because currently we do not have an available public IP
address. I will be happy to administer this Trac instance, and I can
be sure that any downtime will be minimized, because I have
administrative access to the machine it runs on; however, I cannot use
a Chicken-related domain name for it. If this is acceptable, we can
make my Trac instance the primary one.

  -Ivan

felix winkelmann bunny...@gmail.com writes:


Hi!

Thanks, Arto. I must admit that I'm not using the trac anymore - it is
often not reachable (usually when I needed it most). Ivan is going
to set up a new one on a dedicated server. Will we still need the
current trac instance? What do others think?



___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users




___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] Ann.: CHICKEN 4.0.0 released

2009-04-06 Thread Alaric Snell-Pym


On 6 Apr 2009, at 1:10 am, Leonardo Valeri Manera wrote:

Also: kitten-technologies? :3


Meow ;-)

ABS

--
Alaric Snell-Pym
Work: http://www.snell-systems.co.uk/
Play: http://www.snell-pym.org.uk/alaric/
Blog: http://www.snell-pym.org.uk/?author=4




___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] tcp-connect open ports problem

2009-04-06 Thread felix winkelmann
On Mon, Apr 6, 2009 at 2:57 AM, Matt Jones m...@momoweb.co.uk wrote:

 Ah, I found the problem.  My first analysis was wrong.  In fact, after line
 609 in tcp.scm in the version 3.4 source, the port isn't closed before
 signalling the exception:

  (let ((err (get-socket-error s)))
(cond ((= err -1)
   ; Not closed here
   ...)
  (( err 0)
   ; Not closed here
   ...)))

 Just adding the line (##net#close s) fixes the problem.


Thanks, Matt. I see that Kon has applied your fix.


cheers,
felix


___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] Ann.: CHICKEN 4.0.0 released

2009-04-06 Thread felix winkelmann
On Mon, Apr 6, 2009 at 7:41 AM, Leonardo Valeri Manera
l.valeriman...@gmail.com wrote:
 Anyway, Makefile.msvc grief: its using 'cat' where the CMD.EXE mingw
 makefile isnt.

Yes, that should be fixed in trunk.


 This is a pain because that comes in the coreutils package along with
 GNU link which causes the msvc linker to be shadowed.

 Subsequently it  falls on its face with a:

 link -nologo -dll chicken.import.o -out: chicken.import.so \
 libchicken.lib \
 ws2_32.lib advapi32.lib
 LINK : fatal error LNK1146: no argument specified with option '/out:'
 make[1]: *** [chicken.import.so] Error 1146
 make[1]: Leaving directory `C:/Dev/chicken-4.0.0'
 make: *** [all] Error 2


This ain't mingw. You're using some strange mess of GNU utils.
When I say mingw, I mean: you only have gcc, nothing else.


cheers,
felix


___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] Ann.: CHICKEN 4.0.0 released

2009-04-06 Thread Leonardo Valeri Manera
This is the MSVC makefile, ofc I'm not using MinGW :D

The only GNU utils in path there were cat, make, gzip and tar.

That's failing because there's a space between '/out:' and 'chicken-import.so'

Leo



2009/4/6 felix winkelmann bunny...@gmail.com:
 On Mon, Apr 6, 2009 at 7:41 AM, Leonardo Valeri Manera
 l.valeriman...@gmail.com wrote:
 Anyway, Makefile.msvc grief: its using 'cat' where the CMD.EXE mingw
 makefile isnt.

 Yes, that should be fixed in trunk.


 This is a pain because that comes in the coreutils package along with
 GNU link which causes the msvc linker to be shadowed.

 Subsequently it  falls on its face with a:

 link -nologo -dll chicken.import.o -out: chicken.import.so \
         libchicken.lib \
         ws2_32.lib advapi32.lib
 LINK : fatal error LNK1146: no argument specified with option '/out:'
 make[1]: *** [chicken.import.so] Error 1146
 make[1]: Leaving directory `C:/Dev/chicken-4.0.0'
 make: *** [all] Error 2


 This ain't mingw. You're using some strange mess of GNU utils.
 When I say mingw, I mean: you only have gcc, nothing else.


 cheers,
 felix



___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] Ann.: CHICKEN 4.0.0 released

2009-04-06 Thread felix winkelmann
On Mon, Apr 6, 2009 at 11:02 PM, Leonardo Valeri Manera
l.valeriman...@gmail.com wrote

 This is the MSVC makefile, ofc I'm not using MinGW :D

 The only GNU utils in path there were cat, make, gzip and tar.

 That's failing because there's a space between '/out:' and 'chicken-import.so'


Ah. Sorry, didn't see it. Thanks, Leonardo.


cheers,
fel


___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users


[Chicken-users] Stale static wiki files?

2009-04-06 Thread Peter Bex
Hi,

I got a heads up that there are still some pages on the wiki that seem
to be stale or something.  For example,

http://chicken.wiki.br/The%20User's%20Manual
still exists, but there's no corresponding file in the wiki dir.

It's also not a redirect or something, since it shows a different
date in the bottom right corner than
man/3/The%20User's%20Manual or man/4/The%20User's%20Manual

Anyone know what's going on?  Alejandro?  Mario?

Cheers,
Peter
-- 
http://sjamaan.ath.cx
--
The process of preparing programs for a digital computer
 is especially attractive, not only because it can be economically
 and scientifically rewarding, but also because it can be an aesthetic
 experience much like composing poetry or music.
-- Donald Knuth


pgp9rXeg3nJdd.pgp
Description: PGP signature
___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] Re: Trac moving to new server

2009-04-06 Thread Toby Butzon
I'll offer up that callcc.org dns can be pointed however folks here would like.

Thanks,
Toby

On Mon, Apr 6, 2009 at 12:27 AM, Elf e...@ephemeral.net wrote:

 As soon as I can get ahold of Eric, we can give it one (or more) chicken
 domain names :)

 -elf

 On Mon, 6 Apr 2009, Ivan Raikov wrote:


  I have set up a Trac instance that is synchronized with the Chicken
 SVN repository; however, it is installed on the web server of my
 institute, because currently we do not have an available public IP
 address. I will be happy to administer this Trac instance, and I can
 be sure that any downtime will be minimized, because I have
 administrative access to the machine it runs on; however, I cannot use
 a Chicken-related domain name for it. If this is acceptable, we can
 make my Trac instance the primary one.

  -Ivan

 felix winkelmann bunny...@gmail.com writes:

 Hi!

 Thanks, Arto. I must admit that I'm not using the trac anymore - it is
 often not reachable (usually when I needed it most). Ivan is going
 to set up a new one on a dedicated server. Will we still need the
 current trac instance? What do others think?


 ___
 Chicken-users mailing list
 Chicken-users@nongnu.org
 http://lists.nongnu.org/mailman/listinfo/chicken-users



 ___
 Chicken-users mailing list
 Chicken-users@nongnu.org
 http://lists.nongnu.org/mailman/listinfo/chicken-users




-- 
Toby Butzon


___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users