Mystery Solved on this one............ ============================================================================ ==== Ken -
I had the same problem building under 5.1A. Basically I had to edit socket.cxx and change the type of 'addrlen' from 'unsigned int' to 'int'. The CXX compiler is a little stricter with C++ code than the GNU compiler - those parameter types gotta match! Also, you'll get hung up later when you try to link. Somehow bzcpy (and two other bz...) functions get defined twice and the linker doesn't know which one to use (or something to that effect). Basically, I determine the line/file (a *.h file I believe) where those three functions were defined and commented them out. After that, the software builds. I'm still having problem with VNC 3.3.4 but I think it's related to the network-bandwidth/encoding auto-detection algorithm. I've only been successful using the viewer if I explicitly state the encoding, as in $ vncviewer -encodings zrle neptune:1 Without the "-encodings zrle" it tries to do auto-detection and an assertion fires in zrleDecode.h. I think the guys at RealVNC are looking into it. Good luck, Glenn =============================================================== The duplicate entries to comment out are in the ./Xvnc/include/Xfuncs.h header and are: /* void bcopy(); */ /* void bzero(); */ /* int bcmp(); */ Thanks, Ken McCoy 623-434-2337 Acxiom Corporation 19621 N. 23rd Drive Phoenix AZ 85027-4137 ********************************************************************** The information contained in this communication is confidential, is intended only for the use of the recipient named above, and may be legally privileged. If the reader of this message is not the intended recipient, you are hereby notified that any dissemination, distribution, or copying of this communication is strictly prohibited. If you have received this communication in error, please re-send this communication to the sender and delete the original message or any copy of it from your computer system. Thank You. _______________________________________________ VNC-List mailing list [EMAIL PROTECTED] http://www.realvnc.com/mailman/listinfo/vnc-list
