ZNC and GMAKE

Well I tried to gmake irc/znc and I get this error:

Code:
Building znc.o...
virtual memory exhausted: Cannot allocate memory
gmake: *** [znc.o] Error 1

Now, I used the limit command and get this info:

Code:
cputime      unlimited
filesize     unlimited
datasize     33554432 kbytes
stacksize    524288 kbytes
coredumpsize unlimited
memoryuse    unlimited
vmemoryuse   unlimited
descriptors  58982
memorylocked unlimited
maxproc      5547
sbsize       unlimited
swapsize     unlimited

Seems like I should have no problem with virtual memory. Now one thing that might have some bearing on this is the fact that I am trying to do this from the root account. Now, before you guys start reprimanding me for doing this on a root account please see this thread. So what do I do?
 
All the first level Makefiles in /usr/ports/*/* are meant to be used with the standard BSD make(1). A port may actually use gmake() for building but it should left to the build system to decide if gmake() is needed.
 
Well, I did not use ports to try to install it. I used [CMD="wget"]wget[/CMD] to get the tarball and did it that way. After I did [CMD="./configure"]./configure[/CMD] it told me to type [CMD="gmake"]gmake[/CMD] so I did.
 
I just posted a quote to you from the output of trying to install using ports, so odviously it does not "build, install and package" THIS "just fine" on my system. :|
 
If you've built and installed other software outside of ports, that may interfere with the proper function of ports. gmake being called "make" and interfering with the real make(1), for instance. Which is another nice thing about ports, they can be easily deinstalled without leaving various flotsam remaining.
 
So how would I fix this issue without un-installing the programs that I installed because they were not in ports?
 
Back
Top