Re: [OmniOS-discuss] [developer] Initial review -- Changes that allow illumos-gate to (mostly) build on OmniOS

2014-10-27 Thread Alexander Pyhalov
Hello. Dan McDonald via illumos-developer писал 24.10.2014 20:01: dnssd/Makefile libdtrace_jni/java/Makefile I'm curious about the details here... Javadoc uses different filenames for the generated gifs and this allows packaging to work since it'll see both old and new

Re: [OmniOS-discuss] [developer] Initial review -- Changes that allow illumos-gate to (mostly) build on OmniOS

2014-10-27 Thread Yuri Pankov
On Thu, 23 Oct 2014 21:56:30 -0400, Illumos-developer wrote: Hello folks from two lists! I've been tweaking around with illumos-gate on OmniOS again. And this time, I have it to where: * You can still build with NO NOISE on OpenIndiana - i.e. it's a NOP to OI builders. *

[OmniOS-discuss] Compiling GNUCOBOL : pre-requisites present?

2014-10-27 Thread Mayuresh Kathe
Hello, Would the following be present under OmniOS or be easily installable? GNU MP (libgmp) 4.1.2 or later GNU Libtool (libltdl) Berkeley DB (libdb) 1.85 or later Ncurses (ncurses) 5.2 or later Unix curses Thanks, ~Mayuresh ___ OmniOS-discuss

Re: [OmniOS-discuss] Compiling GNUCOBOL : pre-requisites present?

2014-10-27 Thread Ryan Zezeski
On Oct 27, 2014, at 9:13 AM, Mayuresh Kathe mayur...@kathe.in wrote: GNU MP (libgmp) 4.1.2 or later GNU Libtool (libltdl) Berkeley DB (libdb) 1.85 or later Ncurses (ncurses) 5.2 or later Unix curses From what I can tell, there are packages for all of these on the base system except

Re: [OmniOS-discuss] Compiling GNUCOBOL : pre-requisites present?

2014-10-27 Thread Mayuresh Kathe
On Mon, Oct 27, 2014 at 11:44:18AM -0400, Ryan Zezeski wrote: On Oct 27, 2014, at 9:13 AM, Mayuresh Kathe mayur...@kathe.in wrote: GNU MP (libgmp) 4.1.2 or later GNU Libtool (libltdl) Berkeley DB (libdb) 1.85 or later Ncurses (ncurses) 5.2 or later Unix curses From what I

Re: [OmniOS-discuss] Compiling GNUCOBOL : pre-requisites present?

2014-10-27 Thread Mayuresh Kathe
On Mon, Oct 27, 2014 at 11:44:18AM -0400, Ryan Zezeski wrote: On Oct 27, 2014, at 9:13 AM, Mayuresh Kathe mayur...@kathe.in wrote: GNU MP (libgmp) 4.1.2 or later GNU Libtool (libltdl) Berkeley DB (libdb) 1.85 or later Ncurses (ncurses) 5.2 or later Unix curses From what I

[OmniOS-discuss] Small Security Update - wget (CVE-2014-4877)

2014-10-27 Thread Dan McDonald
wget was updated to version 1.16 today, patching a small security vulnerability. All supported repos (006/LTS, 010, 012/stable, bloody) are now updated with this. It's not a reboot-worthy update, but it will create a backup BE. Please utter pkg update on your OmniOS boxes at your earliest

Re: [OmniOS-discuss] Small Security Update - wget (CVE-2014-4877)

2014-10-27 Thread Mayuresh Kathe
Done. Thanks for the heads up Dan, really appreciate your work. ~Mayuresh On Mon, Oct 27, 2014 at 03:27:02PM -0400, Dan McDonald wrote: wget was updated to version 1.16 today, patching a small security vulnerability. All supported repos (006/LTS, 010, 012/stable, bloody) are now updated

Re: [OmniOS-discuss] [developer] Initial review -- Changes that allow illumos-gate to (mostly) build on OmniOS

2014-10-27 Thread Dan McDonald
Pardon the latency on this one, Yuri. On Oct 25, 2014, at 4:23 PM, Yuri Pankov yuri.pan...@nexenta.com wrote: * Lose the IPP listener if so specified in your .env file, which depends on bits not in OmniOS. Can we lose it entirely, dropping the apache1 dependency and not adding extra

Re: [OmniOS-discuss] include path : is there such a thing?

2014-10-27 Thread Paul B. Henson
On Tue, Oct 28, 2014 at 01:29:06AM +0530, Mayuresh Kathe wrote: Just the way there's a PATH environment variable and an optional MANPATH one too, is there anything for includes also? https://gcc.gnu.org/onlinedocs/gcc/Environment-Variables.html C_INCLUDE_PATH CPLUS_INCLUDE_PATH

Re: [OmniOS-discuss] include path : is there such a thing?

2014-10-27 Thread Mayuresh Kathe
On Mon, Oct 27, 2014 at 01:03:50PM -0700, Paul B. Henson wrote: On Tue, Oct 28, 2014 at 01:29:06AM +0530, Mayuresh Kathe wrote: Just the way there's a PATH environment variable and an optional MANPATH one too, is there anything for includes also?

Re: [OmniOS-discuss] include path : is there such a thing?

2014-10-27 Thread Mayuresh Kathe
On Tue, Oct 28, 2014 at 01:52:41AM +0530, Mayuresh Kathe wrote: On Mon, Oct 27, 2014 at 01:03:50PM -0700, Paul B. Henson wrote: On Tue, Oct 28, 2014 at 01:29:06AM +0530, Mayuresh Kathe wrote: Just the way there's a PATH environment variable and an optional MANPATH one too, is there

Re: [OmniOS-discuss] include path : is there such a thing?

2014-10-27 Thread Michael Rasmussen
On Tue, 28 Oct 2014 01:59:23 +0530 Mayuresh Kathe mayur...@kathe.in wrote: Okay, got it working by manually copying the libdb.x files from /opt/omni/lib to /lib directory. But somehow, it doesn't feel like a proper/elegant solution. Instead of copying why not make links? On same file

Re: [OmniOS-discuss] include path : is there such a thing?

2014-10-27 Thread Theo Schlossnagle
Just add LDFLAGS=-L/opt/omni/lib -R/opt/omni/lib to the arguments of configure. On Mon, Oct 27, 2014 at 10:35 PM, Michael Rasmussen m...@miras.org wrote: On Tue, 28 Oct 2014 01:59:23 +0530 Mayuresh Kathe mayur...@kathe.in wrote: Okay, got it working by manually copying the libdb.x files

Re: [OmniOS-discuss] include path : is there such a thing?

2014-10-27 Thread Bob Friesenhahn
On Tue, 28 Oct 2014, Mayuresh Kathe wrote: Okay, got it working by manually copying the libdb.x files from /opt/omni/lib to /lib directory. But somehow, it doesn't feel like a proper/elegant solution. Ugh! For my own purposes I use a config.site file (e.g. /usr/local/share/config.site)

Re: [OmniOS-discuss] [developer] Initial review -- Changes that allow illumos-gate to (mostly) build on OmniOS

2014-10-27 Thread Ryan Zezeski
On Oct 23, 2014, at 9:56 PM, Dan McDonald via illumos-developer develo...@lists.illumos.org wrote: * You can still build with NO NOISE on OpenIndiana - i.e. it's a NOP to OI builders. I'd like both the illumos developer community and the OmniOS community to look, and share