9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] getting drawterm on macos and x86
@ 2006-11-06  1:25 ron minnich
  2006-11-06  1:53 ` John Floren
                   ` (2 more replies)
  0 siblings, 3 replies; 14+ messages in thread
From: ron minnich @ 2006-11-06  1:25 UTC (permalink / raw)
  To: 9fans

[-- Attachment #1: Type: text/plain, Size: 1744 bytes --]

here is what it took for:
maya-gokhales-computer:~/src/drawterm maya$ uname -a
Darwin maya-gokhales-computer.local 8.8.1 Darwin Kernel Version 8.8.1: Mon
Sep 25 19:42:00 PDT 2006; root:xnu-792.13.8.obj~1/RELEASE_I386 i386 i386
maya-gokhales-computer:~/src/drawterm maya$ gcc -v -v
Using built-in specs.
Target: i686-apple-darwin8
Configured with:
/private/var/tmp/gcc/gcc-5367.obj~1/src/configure--disable-checking
-enable-werror --prefix=/usr --mandir=/share/man
--enable-languages=c,objc,c++,obj-c++
--program-transform-name=/^[cg][^.-]*$/s/$/-4.0/
--with-gxx-include-dir=/include/c++/4.0.0 --with-slibdir=/usr/lib
--build=powerpc-apple-darwin8 --with-arch=nocona --with-tune=generic
--program-prefix= --host=i686-apple-darwin8 --target=i686-apple-darwin8
Thread model: posix
gcc version 4.0.1 (Apple Computer, Inc. build 5367)

Summary: no audio. They keep screwing with concatentation in cpp. The rules
on gas pseudo ops keep changing.

other than that it's fine, i.e. it is working for me.

ron

diff -r drawterm/Make.unix drawterm.hacked/Make.unix
16,17c16,17
< # AUDIO=none
< AUDIO=unix
---
>  AUDIO=none
> #AUDIO=unix
diff -r drawterm/posix-386/md5block.spp drawterm.hacked
/posix-386/md5block.spp
46c46,47
< #define PAYME(x) $ ## x
---
> //#define PAYME(x) $ ## x
> #define PAYME(x) $  x
120c121,122
<               .type _md5block, @function
---
> //            .type _md5block, @function
>       .globl  _md5block
121a124,125
>       .globl  __md5block
>       __md5block:
diff -r drawterm/posix-386/sha1block.spp drawterm.hacked
/posix-386/sha1block.spp
3a4
> //    .type _sha1block, @function
5d5
<       .type _sha1block, @function
6a7,8
> .globl __sha1block
> __sha1block:

[-- Attachment #2: Type: text/html, Size: 2192 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [9fans] getting drawterm on macos and x86
  2006-11-06  1:25 [9fans] getting drawterm on macos and x86 ron minnich
@ 2006-11-06  1:53 ` John Floren
  2006-11-06 13:30 ` erik quanstrom
  2006-11-06 16:52 ` David Leimbach
  2 siblings, 0 replies; 14+ messages in thread
From: John Floren @ 2006-11-06  1:53 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Sorry, I'm probably reading this wrong... but this stuff makes it look
like drawterm has audio compatibility. Can somebody clear this up for
me?

Thanks

John

On 11/5/06, ron minnich <rminnich@gmail.com> wrote:
> here is what it took for:
> maya-gokhales-computer:~/src/drawterm maya$ uname -a
> Darwin maya-gokhales-computer.local 8.8.1 Darwin Kernel Version 8.8.1: Mon
> Sep 25 19:42:00 PDT 2006; root:xnu-792.13.8.obj~1/RELEASE_I386 i386 i386
> maya-gokhales-computer:~/src/drawterm maya$ gcc -v -v
> Using built-in specs.
> Target: i686-apple-darwin8
> Configured with: /private/var/tmp/gcc/gcc-5367.obj~1/src/configure
> --disable-checking -enable-werror --prefix=/usr --mandir=/share/man
> --enable-languages=c,objc,c++,obj-c++
> --program-transform-name=/^[cg][^.-]*$/s/$/- 4.0/
> --with-gxx-include-dir=/include/c++/4.0.0
> --with-slibdir=/usr/lib --build=powerpc-apple-darwin8 --with-arch=nocona
> --with-tune=generic --program-prefix= --host=i686-apple-darwin8
> --target=i686-apple-darwin8
> Thread model: posix
> gcc version 4.0.1 (Apple Computer, Inc. build 5367)
>
> Summary: no audio. They keep screwing with concatentation in cpp. The rules
> on gas pseudo ops keep changing.
>
> other than that it's fine, i.e. it is working for me.
>
> ron
>
> diff -r drawterm/Make.unix drawterm.hacked/Make.unix
> 16,17c16,17
> < # AUDIO=none
> < AUDIO=unix
> ---
> >  AUDIO=none
> > #AUDIO=unix
> diff -r drawterm/posix-386/md5block.spp drawterm.hacked
> /posix-386/md5block.spp
> 46c46,47
> < #define PAYME(x) $ ## x
> ---
> > //#define PAYME(x) $ ## x
> > #define PAYME(x) $  x
> 120c121,122
> <               .type _md5block, @function
> ---
> > //            .type _md5block, @function
> >       .globl  _md5block
> 121a124,125
> >       .globl  __md5block
> >       __md5block:
> diff -r drawterm/posix-386/sha1block.spp
> drawterm.hacked/posix-386/sha1block.spp
> 3a4
> > //    .type _sha1block, @function
> 5d5
> <       .type _sha1block, @function
> 6a7,8
> > .globl __sha1block
> > __sha1block:
>
>


--
Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [9fans] getting drawterm on macos and x86
  2006-11-06  1:25 [9fans] getting drawterm on macos and x86 ron minnich
  2006-11-06  1:53 ` John Floren
@ 2006-11-06 13:30 ` erik quanstrom
  2006-11-06 16:52 ` David Leimbach
  2 siblings, 0 replies; 14+ messages in thread
From: erik quanstrom @ 2006-11-06 13:30 UTC (permalink / raw)
  To: 9fans

ron, that's some dedication.  that's a lot to go through
to use macos.

;-) erik


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [9fans] getting drawterm on macos and x86
  2006-11-06  1:25 [9fans] getting drawterm on macos and x86 ron minnich
  2006-11-06  1:53 ` John Floren
  2006-11-06 13:30 ` erik quanstrom
@ 2006-11-06 16:52 ` David Leimbach
  2006-11-06 17:04   ` ron minnich
  2 siblings, 1 reply; 14+ messages in thread
From: David Leimbach @ 2006-11-06 16:52 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Hmmm I thought I had a binary of this already...  I wonder if it's
intel or rosetta-based when running :-)

On 11/5/06, ron minnich <rminnich@gmail.com> wrote:
> here is what it took for:
> maya-gokhales-computer:~/src/drawterm maya$ uname -a
> Darwin maya-gokhales-computer.local 8.8.1 Darwin Kernel Version 8.8.1: Mon
> Sep 25 19:42:00 PDT 2006; root:xnu-792.13.8.obj~1/RELEASE_I386 i386 i386
> maya-gokhales-computer:~/src/drawterm maya$ gcc -v -v
> Using built-in specs.
> Target: i686-apple-darwin8
> Configured with: /private/var/tmp/gcc/gcc-5367.obj~1/src/configure
> --disable-checking -enable-werror --prefix=/usr --mandir=/share/man
> --enable-languages=c,objc,c++,obj-c++
> --program-transform-name=/^[cg][^.-]*$/s/$/- 4.0/
> --with-gxx-include-dir=/include/c++/4.0.0
> --with-slibdir=/usr/lib --build=powerpc-apple-darwin8 --with-arch=nocona
> --with-tune=generic --program-prefix= --host=i686-apple-darwin8
> --target=i686-apple-darwin8
> Thread model: posix
> gcc version 4.0.1 (Apple Computer, Inc. build 5367)
>
> Summary: no audio. They keep screwing with concatentation in cpp. The rules
> on gas pseudo ops keep changing.
>
> other than that it's fine, i.e. it is working for me.
>
> ron
>
> diff -r drawterm/Make.unix drawterm.hacked/Make.unix
> 16,17c16,17
> < # AUDIO=none
> < AUDIO=unix
> ---
> >  AUDIO=none
> > #AUDIO=unix
> diff -r drawterm/posix-386/md5block.spp drawterm.hacked
> /posix-386/md5block.spp
> 46c46,47
> < #define PAYME(x) $ ## x
> ---
> > //#define PAYME(x) $ ## x
> > #define PAYME(x) $  x
> 120c121,122
> <               .type _md5block, @function
> ---
> > //            .type _md5block, @function
> >       .globl  _md5block
> 121a124,125
> >       .globl  __md5block
> >       __md5block:
> diff -r drawterm/posix-386/sha1block.spp
> drawterm.hacked/posix-386/sha1block.spp
> 3a4
> > //    .type _sha1block, @function
> 5d5
> <       .type _sha1block, @function
> 6a7,8
> > .globl __sha1block
> > __sha1block:
>
>


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [9fans] getting drawterm on macos and x86
  2006-11-06 16:52 ` David Leimbach
@ 2006-11-06 17:04   ` ron minnich
  2006-11-06 17:24     ` David Leimbach
  0 siblings, 1 reply; 14+ messages in thread
From: ron minnich @ 2006-11-06 17:04 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 234 bytes --]

On 11/6/06, David Leimbach <leimy2k@gmail.com> wrote:
>
> Hmmm I thought I had a binary of this already...  I wonder if it's
> intel or rosetta-based when running :-)



I could not find a binary that worked. So, UTSL.

ron

[-- Attachment #2: Type: text/html, Size: 548 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Re: [9fans] getting drawterm on macos and x86
  2006-11-06 17:04   ` ron minnich
@ 2006-11-06 17:24     ` David Leimbach
  2006-11-06 20:27       ` ron minnich
  0 siblings, 1 reply; 14+ messages in thread
From: David Leimbach @ 2006-11-06 17:24 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On 11/6/06, ron minnich <rminnich@gmail.com> wrote:
>
>
> On 11/6/06, David Leimbach <leimy2k@gmail.com> wrote:
> > Hmmm I thought I had a binary of this already...  I wonder if it's
> > intel or rosetta-based when running :-)
>
>
>  I could not find a binary that worked. So, UTSL.
>
>  ron

Yep... :-)  Are you getting "yellow windows" for Acme with it?

Dave

>
>
>


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Re: [9fans] getting drawterm on macos and x86
  2006-11-06 17:24     ` David Leimbach
@ 2006-11-06 20:27       ` ron minnich
  2006-11-06 20:31         ` David Leimbach
  0 siblings, 1 reply; 14+ messages in thread
From: ron minnich @ 2006-11-06 20:27 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 148 bytes --]

On 11/6/06, David Leimbach <leimy2k@gmail.com> wrote:
>
>
> Yep... :-)  Are you getting "yellow windows" for Acme with it?


not yet.

ron

[-- Attachment #2: Type: text/html, Size: 453 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Re: Re: [9fans] getting drawterm on macos and x86
  2006-11-06 20:27       ` ron minnich
@ 2006-11-06 20:31         ` David Leimbach
  2006-11-06 20:36           ` David Leimbach
  0 siblings, 1 reply; 14+ messages in thread
From: David Leimbach @ 2006-11-06 20:31 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On 11/6/06, ron minnich <rminnich@gmail.com> wrote:
>
>
> On 11/6/06, David Leimbach <leimy2k@gmail.com> wrote:
> >
> > Yep... :-)  Are you getting "yellow windows" for Acme with it?
>
>  not yet.
>
>  ron

Hmm, they are always yellow for me.  Maybe I should UTSL.

>
>


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Re: Re: Re: [9fans] getting drawterm on macos and x86
  2006-11-06 20:31         ` David Leimbach
@ 2006-11-06 20:36           ` David Leimbach
  2006-11-06 20:41             ` David Leimbach
  2006-11-06 20:47             ` ron minnich
  0 siblings, 2 replies; 14+ messages in thread
From: David Leimbach @ 2006-11-06 20:36 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On 11/6/06, David Leimbach <leimy2k@gmail.com> wrote:
> On 11/6/06, ron minnich <rminnich@gmail.com> wrote:
> >
> >
> > On 11/6/06, David Leimbach <leimy2k@gmail.com> wrote:
> > >
> > > Yep... :-)  Are you getting "yellow windows" for Acme with it?
> >
> >  not yet.
> >
> >  ron
>
> Hmm, they are always yellow for me.  Maybe I should UTSL.

Having started doing that I realize there is a config make for OSX.

I still need to change the md5block.spp code though it seems.


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Re: Re: Re: Re: [9fans] getting drawterm on macos and x86
  2006-11-06 20:36           ` David Leimbach
@ 2006-11-06 20:41             ` David Leimbach
  2006-11-06 20:47             ` ron minnich
  1 sibling, 0 replies; 14+ messages in thread
From: David Leimbach @ 2006-11-06 20:41 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On 11/6/06, David Leimbach <leimy2k@gmail.com> wrote:
> On 11/6/06, David Leimbach <leimy2k@gmail.com> wrote:
> > On 11/6/06, ron minnich <rminnich@gmail.com> wrote:
> > >
> > >
> > > On 11/6/06, David Leimbach <leimy2k@gmail.com> wrote:
> > > >
> > > > Yep... :-)  Are you getting "yellow windows" for Acme with it?
> > >
> > >  not yet.
> > >
> > >  ron
> >
> > Hmm, they are always yellow for me.  Maybe I should UTSL.
>
> Having started doing that I realize there is a config make for OSX.
>
> I still need to change the md5block.spp code though it seems.
>

And now that's done but I don't know the command line options anymore
and it seems to think I use the same username on Mac OS X as I do on
my Plan 9 cpu server ;-)

I'll figure it out, but the CVS version is a bit different.

Dave


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Re: Re: Re: [9fans] getting drawterm on macos and x86
  2006-11-06 20:36           ` David Leimbach
  2006-11-06 20:41             ` David Leimbach
@ 2006-11-06 20:47             ` ron minnich
  2006-11-06 21:06               ` Steve Simon
  1 sibling, 1 reply; 14+ messages in thread
From: ron minnich @ 2006-11-06 20:47 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 277 bytes --]

On 11/6/06, David Leimbach <leimy2k@gmail.com> wrote:
>
>
> I still need to change the md5block.spp code though it seems.
>

I missed that config somehow

yes, gas has changed, you have to apply my mod to the *.spp files

drawterm -a host -c host -u rminnich

ron

[-- Attachment #2: Type: text/html, Size: 575 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Re: Re: Re: [9fans] getting drawterm on macos and x86
  2006-11-06 20:47             ` ron minnich
@ 2006-11-06 21:06               ` Steve Simon
  2006-11-06 21:30                 ` David Leimbach
  2006-11-06 21:43                 ` ron minnich
  0 siblings, 2 replies; 14+ messages in thread
From: Steve Simon @ 2006-11-06 21:06 UTC (permalink / raw)
  To: 9fans

> drawterm -a host -c host -u rminnich

you probably know but there is a new(ish) -s option to specify
where to find a secstore server - single signon for drawterm :-)

-Steve


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Re: Re: Re: Re: [9fans] getting drawterm on macos and x86
  2006-11-06 21:06               ` Steve Simon
@ 2006-11-06 21:30                 ` David Leimbach
  2006-11-06 21:43                 ` ron minnich
  1 sibling, 0 replies; 14+ messages in thread
From: David Leimbach @ 2006-11-06 21:30 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On 11/6/06, Steve Simon <steve@quintile.net> wrote:
> > drawterm -a host -c host -u rminnich
>
> you probably know but there is a new(ish) -s option to specify
> where to find a secstore server - single signon for drawterm :-)
>
> -Steve
>

Interesting... :-)

It's working great.  Seems a bit snappier now than previous drawterms
I've tried.  I'm wondering if I had the PPC version before now.


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Re: Re: Re: [9fans] getting drawterm on macos and x86
  2006-11-06 21:06               ` Steve Simon
  2006-11-06 21:30                 ` David Leimbach
@ 2006-11-06 21:43                 ` ron minnich
  1 sibling, 0 replies; 14+ messages in thread
From: ron minnich @ 2006-11-06 21:43 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 354 bytes --]

On 11/6/06, Steve Simon <steve@quintile.net> wrote:
>
> > drawterm -a host -c host -u rminnich
>
> you probably know but there is a new(ish) -s option to specify
> where to find a secstore server - single signon for drawterm :-)



oh yes, I don't use it. It'sbeen a bit of a bother when the places you deal
with won't open
that port.

ron

[-- Attachment #2: Type: text/html, Size: 668 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2006-11-06 21:43 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-11-06  1:25 [9fans] getting drawterm on macos and x86 ron minnich
2006-11-06  1:53 ` John Floren
2006-11-06 13:30 ` erik quanstrom
2006-11-06 16:52 ` David Leimbach
2006-11-06 17:04   ` ron minnich
2006-11-06 17:24     ` David Leimbach
2006-11-06 20:27       ` ron minnich
2006-11-06 20:31         ` David Leimbach
2006-11-06 20:36           ` David Leimbach
2006-11-06 20:41             ` David Leimbach
2006-11-06 20:47             ` ron minnich
2006-11-06 21:06               ` Steve Simon
2006-11-06 21:30                 ` David Leimbach
2006-11-06 21:43                 ` ron minnich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).