Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
The "installation on Unix" page for CVSNT states: Installation on Solaris is currently broken - patches welcome I haven't tried Solaris, but here are two small changes that are necessary to build CVSNT on FreeBSD 4: 1) in cvsdelta/cvsdelta.cpp at line 26, replace #include <netinet/in.h> with: #include <arpa/inet.h> [ This is the POSIX standard header for htons(), htonl(), etc; it should work on linux ] 2) in lockservice/LockParse.cpp at line 14, add the directive: #include <time.h> [ required for time() ] - JD