Burton Strauss wrote:
Sounds like you are missing the threading library - those are all POSIX
threads functions...

Check config.log - see how the tests for the POSIX functions went.  We
explicitly check in ./configure for
AC_CHECK_LIB(pthread, pthread_create, , [
    AC_CHECK_LIB(pthreads, pthread_create, , [
        AC_CHECK_LIB(c_r, pthread_create)
    ])
])

So it's probably the link missing -lpthread or some such.  But I thought
that was already in there.  What shows up in ./configure for the LIBS
parameters (at the end)

This line?

System Libs : -lxml2 -lc_r -lc -lcrypt -lssl -lcrypto -lpcap -lgdbm -lgd -lpng -lz
_______________________________________________
Ntop mailing list
[email protected]
http://listgateway.unipi.it/mailman/listinfo/ntop

Reply via email to