Trying to install wflogs (
http://www.wallfire.org/wflogs/) on SuSE 10 but it says I need wfnetobjs, so I downloaded the wfnetobjs here:
http://www.wallfire.org/wfnetobjs/
But I am unsure how to install/compile the source..
I unzipped it, opened the README which says to run ./configure which I did and that seems to be ok, but when I run "make" which it says to do next I get a bunch of errors. Here is the whole output from the make command:
Code:
make all-recursive
make[1]: Entering directory `/home/nysda/Downloads/wfnetobjs-0.2.4'
Making all in intl
make[2]: Entering directory `/home/nysda/Downloads/wfnetobjs-0.2.4/intl'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/nysda/Downloads/wfnetobjs-0.2.4/intl'
Making all in po
make[2]: Entering directory `/home/nysda/Downloads/wfnetobjs-0.2.4/po'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/nysda/Downloads/wfnetobjs-0.2.4/po'
Making all in man
make[2]: Entering directory `/home/nysda/Downloads/wfnetobjs-0.2.4/man'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/nysda/Downloads/wfnetobjs-0.2.4/man'
Making all in lib
make[2]: Entering directory `/home/nysda/Downloads/wfnetobjs-0.2.4/lib'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/nysda/Downloads/wfnetobjs-0.2.4/lib'
Making all in rvlog
make[2]: Entering directory `/home/nysda/Downloads/wfnetobjs-0.2.4/rvlog'
/bin/sh ../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. -I.. -I../lib -I../rvlog -O2 -Wall -c rvlog.cc
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I../lib -I../rvlog -O2 -Wall -c rvlog.cc -fPIC -DPIC -o .libs/rvlog.o
rvlog.cc: In member function 'int rvlog::how_set(int)':
rvlog.cc:113: error: 'getenv' was not declared in this scope
rvlog.cc:115: error: 'getenv' was not declared in this scope
rvlog.cc: In member function 'int rvlog::level_set(int)':
rvlog.cc:147: error: 'getenv' was not declared in this scope
rvlog.cc:149: error: 'atoi' was not declared in this scope
rvlog.cc: In member function 'int rvlog::logv(int, const char*, __va_list_tag*) const':
rvlog.cc:195: error: 'strerror' was not declared in this scope
make[2]: *** [rvlog.lo] Error 1
make[2]: Leaving directory `/home/nysda/Downloads/wfnetobjs-0.2.4/rvlog'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/nysda/Downloads/wfnetobjs-0.2.4'
make: *** [all-recursive-am] Error 2
Any suggestions on how to fix this?