Re: [9fans] ot: pascal rides again?

2015-05-25 Thread Bakul Shah
On Sun, 24 May 2015 17:25:54 EDT minux wrote: > > On Sun, May 24, 2015 at 11:55 AM, erik quanstrom > wrote: > > > > Uhm I might be mistaken, but I guess [8192]byte is an array, and []byte > > are > > > slices - therefore they are different types. > > > > > > > yes, exactly. i suppose this impl

[9fans] mk - how to work around environment size limit on linux

2015-05-25 Thread dexen deVries
i'm using plan9port mk on linux and just hit the environment+argument length limit -- linux' execve($PLAN9/bin/rc, ... ) returns E2BIG because $newprereq gets too large. how do i work around? is there an idiomatic way of splitting up $newprereq into smaller chunks? the mkfile is: TIMESTAMP_FILE:

Re: [9fans] mk - how to work around environment size limit on linux

2015-05-25 Thread Skip Tavakkolian
do you mean other than using xargs? On Mon, May 25, 2015 at 5:31 AM dexen deVries wrote: > i'm using plan9port mk on linux and just hit the environment+argument > length limit -- linux' execve($PLAN9/bin/rc, ... ) returns E2BIG because > $newprereq gets too large. > > how do i work around? is th

[9fans] "..." and "##' stuff with pcc?

2015-05-25 Thread Jens Staal
Hi all. I tried using the following shim header to satisfy in a package I want to build. https://raw.githubusercontent.com/libressl-portable/portable/master/include/err.h It looked pretty neat since it does everything in the header. It did however not work (I guess the "..." and "##" are to bl

Re: [9fans] How do I get a CSR CA's like?

2015-05-25 Thread Brantley Coile
Turns out the CSR wasn’t acceptable because of the MD5 signature. It seems the that they should be signed as RSA and not MD5. MD5 is not deemed secure enough. The plan 9 code is signing everything with MD5. Who owns this code? Has anyone fixed this yet? > On May 24, 2015, at 11:10 AM, Skip Ta

[9fans] Plumb(er) + Acme + MacOS X - don't work

2015-05-25 Thread C Cirello
Hello, I cannot make the plumbing to work on acme. I have create a plumbing file at ~/lib/plumbing with: # isbn10 search through Amazon type is text data matches '([0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9])' plumb start open 'http://www.amazon.com/s/?field-keywords='$1 Initially I real

Re: [9fans] Plumb(er) + Acme + MacOS X - don't work

2015-05-25 Thread C Cirello
It seems I solve my own problem by accident. In the end I am using this script: #!/bin/bash /usr/local/plan9/bin/plumber cat /usr/local/plan9/plumb/fileaddr /usr/local/plan9/plumb/basic $HOME/lib/plumbing | 9p write plumb/rules export tabstop=8; /usr/local/plan9/bin/acme -a -l ~/acme.dump & Is t