Hi, thank you very much for your efforts!
But, I wonder if something still is broken?
Building on an old Debian etch (32-bit) with configuration
./configure --with-static-agent --with-all-static --with-static-subagents="pingcheck"
Configure script ok, but make complains:
../../../tools/create_ssa_list.sh "linux pingcheck" > static_subagents.cpp
CXX static_subagents.o
make[4]: *** No rule to make target `../../../src/db/libnxdb/libnxdb.la', needed by `nxagentd'. Stop.
Also, seems to be some 64bit issues in RC1. When building on SuSE 64 bit, I get this:
CXX extagent.o
extagent.cpp: In function CSCPMessage* ReadMessageFromPipe(void*, void*):
extagent.cpp:131:34: error: cast from void to SOCKET loses precision
make[4]: *** [extagent.o] Error 1
Changed file include/nms_common.h, from int to intptr_t in the SOCKET typedef:
typedef intptr_t SOCKET;
Got a bit longer, next error was
push.cpp: In function void* PushConnector(void*):
push.cpp:245:63: error: cannot convert size_t* to socklen_t* for argument 3 to int accept(int, sock addr*, socklen_t*)
make[4]: *** [push.o] Error 1
changed push.cpp,
from: size_t size = sizeof(struct sockaddr_un);
to: socklen_t size = sizeof(struct sockaddr_un);
Then a normal build is ok, but when building with
./configure --with-static-agent --with-all-static
it complains,
/usr/lib64/gcc/x86_64-suse-linux/4.5/../../../../x86_64-suse-linux/bin/ld: attempted static link of dynamic object `../../../src/db/libnxdb/.libs/libnxdb.so'
collect2: ld returned 1 exit status
I think I give up on this for now

Will try again when next release is out. Again, thanks for your support.