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.
Tony Hoyle schrieb: > CVSNT 2.5.02 (Servalan) build 2060 (Stable RC4). > > Very little has changed. OSX now has database support.. one or two > minor bug fixes. ssh fixed (broke in 2057 interim build). > > Ticket Description > #74 Crash when tag list in RCS file corrupted. > > (second attempt.. got the title wrong last time). > _______________________________________________ > cvsnt mailing list > cvsnt at cvsnt.org cvsnt downloads at march-hare.com @CVSNT on Twitter CVSNT on Facebook > http://www.cvsnt.org/cgi-bin/mailman/listinfo/cvsnt https://www.march-hare.com/cvspro/en.asp#downcvs Compiling this version on Linux ends with the following error: g++ -g -O2 -o .libs/cvslockd cvslockd.o LockParse.o server.o mdns.o ../lib/libcvs.a ../cvsapi/.libs/libcvsapi.so ../cvstools/.libs/libcvstools.so ../pcre/.libs/libpcreposix.a ../pcre/.libs/libpcre.a -lpthread -lcrypt server.o(.text+0xd): In function `mdns_thread_proc': /users/src/cvsnt-2.5.02.2060/lockservice/server.cpp:80: undefined reference to `mdns_publish(int)' collect2: ld returned 1 exit status make[2]: *** [cvslockd] Error 1 The following patch to correct this error: --- mdns.cpp.org 2005-08-17 00:23:52.069403605 +0200 +++ mdns.cpp 2005-08-17 00:24:45.729044516 +0200 @@ -208,7 +208,7 @@ #else -int mdns_publish() +int mdns_publish(int port) { return 0; } Ernst