[OmniOS-discuss] scheme9 fails to compile

2013-10-12 Thread Mayuresh Kathe
hello, tried compiling scheme9, available at; http://www.t3x.org/ (main site), http://devio.us/~mayuresh/s9fes.tgz (directly). the compilation output errors are below; Undefined first referenced symbol in file pp_curs_endwin

Re: [OmniOS-discuss] gcc : include path settings?

2013-10-12 Thread Theo Schlossnagle
You likely don't have any system headers installed. Those come in the system/header package. On Sat, Oct 12, 2013 at 1:36 PM, Mayuresh Kathe wrote: > hello, new here, just started off today. > i've installed gcc47 from the pkg repository. > how do i set the include path for gcc47? > simple pro

[OmniOS-discuss] ZBEs when moving zones

2013-10-12 Thread Ben Summers
Hello, I'm writing a script to move zones between OmniOS servers, using snapshots zfs send | recv, so I can transfer it while it's running, then do a final snapshot when it's finally down. The problem comes when I come to import it. I get the problem described here: http://everycity.co.uk/

Re: [OmniOS-discuss] gcc : include path settings?

2013-10-12 Thread Chris Nehren
On Sat, Oct 12, 2013 at 13:36:08 -0400, Mayuresh Kathe wrote: > hello, new here, just started off today. > i've installed gcc47 from the pkg repository. > how do i set the include path for gcc47? > simple programs like the one below fail to compile. > > -- helloworld.c -- > #include > int main(vo

[OmniOS-discuss] gcc : include path settings?

2013-10-12 Thread Mayuresh Kathe
hello, new here, just started off today. i've installed gcc47 from the pkg repository. how do i set the include path for gcc47? simple programs like the one below fail to compile. -- helloworld.c -- #include int main(void) { printf("Hello, World!\n"); return 0; } -- helloworld.c -- overall,