Re: [9fans] Python

2010-10-10 Thread Steve Simon
this is a snippet of /sys/include/ape/stdio.h extern int scanf(const char *, ...); extern int sprintf(char *, const char *, ...); #ifdef _C99_SNPRINTF_EXTENSION /* user knows about c99 out-of-bounds returns */ extern int snprintf(char *, size_t, const char *, ...);

Re: [9fans] Python

2010-10-10 Thread Michaelian Ennis
On Sun, Oct 10, 2010 at 10:21 AM, Federico G. Benavento wrote: > in /sys/src/cmd/python/plan9.c main() try changing >        setfcr(getfcr()&~FPINVAL); > to >        setfcr(getfcr()&~(FPINVAL|FPOVFL)); OK I added that and had to ad FPOVFL to the defines: #if defined(T386) #define FPINVAL (1<<0) #

[9fans] FYI: etherigbe driver patch for QEMU 0.11.x

2010-10-10 Thread Ryousei Takano
Hi all, Recently, Sakura VPS 980, which is a KVM-based VPS service, has been launched in Japan. I tried to install Plan 9 on it, and now Plan 9 is working!! http://vps.sakura.ad.jp/ (Sorry, only in Japanese) http://yfrog.com/ncwj6p (screen shot) I found 2 problems of the etherigbe driver

Re: [9fans] IWP9-2010 tentative schedule

2010-10-10 Thread Skip Tavakkolian
On the plus side we will be able to see you land from the conference room :) -Skip On Sun, Oct 10, 2010 at 8:24 AM, Paul Lalonde wrote: > I'll be a bit late - the floats don't land on Lake Union until 10:00am at > this time of year, so I should just miss Geoff's talk :-( > I do wish my guruplug

Re: [9fans] IWP9-2010 tentative schedule

2010-10-10 Thread Paul Lalonde
I'll be a bit late - the floats don't land on Lake Union until 10:00am at this time of year, so I should just miss Geoff's talk :-( I do wish my guruplug had arrived already. Paul On Sat, Oct 9, 2010 at 9:08 PM, Jeff Sickel wrote: > > On Oct 9, 2010, at 10:26 PM, ron minnich wrote: > > > Bring

Re: [9fans] Python

2010-10-10 Thread Federico G. Benavento
> byte-compiling > /sys/lib/python/lib/python2.5/site-packages/django/template/defaultfilters.py > to defaultfilters.pyc > python 3092326: suicide: sys: fp: numeric overflow fppc=0x7cb86 > status=0xf8a8 pc=0x0007cb8a > in /sys/src/cmd/python/plan9.c main() try changing setfcr(getfcr()&~FP

[9fans] Python

2010-10-10 Thread Michaelian Ennis
I use the contrib/install bichued/python. I was wondering this morning if I could use Django's database API in plan9 so I tried to install Django's current release on a test system. It installed, began byte-compiling the libraries and crashed. byte-compiling /sys/lib/python/lib/python2.5/site-p