> Hello, > > I'm tryng to compile VNC under Mandrake 8.0 on an Intel machine
Why not using a linux distribution of VNC? > > Xvnc compiles without problems > > The rest gives me the following: > $ make World > ... > > gcc -o vncviewer -O3 -fomit-frame-pointer -pipe -mcpu=pentiumpro > -march=i586 -ffast-math -L/usr/X11R6/lib argsresources.o > colour.o > desktop.o dialogs.o fullscreen.o listen.o misc.o popup.o > rfbproto.o selection.o shm.o sockets.o vncviewer.o > -lXaw -lXmu -lXt > -lSM -lICE -lXpm -lXext -lX11 ../libvncauth/libvncauth.a > /usr/bin/ld: cannot find -lXpm > collect2: ld returned 1 exit status > make[2]: *** [vncviewer] Error 1 > make[2]: Leaving directory `/home/brandizi/test/vnc_unixsrc/vncviewer' > make[1]: *** [all] Error 2 > make[1]: Leaving directory `/home/brandizi/test/vnc_unixsrc' > make: *** [World] Error 2 > > > What is pm library? Where can I find in my RPMs list? More It's not the pm library but the Xpm library. Look for files with the name libXpm.* in your system libraries. They are most likely found around the X11 libraries. Have a closer look at the gcc commanline: -L/usr/X11R6/lib should be the place. What do you find at /usr/X11R6/lib ? Is that available at your machine? Where do you find libXpm.* ? Add a -L/directory/for/libxpm/ option to the gcc line to see if it works. > generally: isn't > there a list of libraries and other software requirements > needed to build > VNC (something more detailed than the README, which says only > "you need a > recent version of X" ). In general the recent verion of X (short for X11) is something like X11R6. (however X11R4 or X11R5 should do.) They contain the Xpm library. XF86 is an implementation of X11. > > Thanks, greetings. > > ============================================== > Marco Brandizi <[EMAIL PROTECTED]> > --------------------------------------------------------------------- > To unsubscribe, mail [EMAIL PROTECTED] with the line: > 'unsubscribe vnc-list' in the message BODY > See also: http://www.uk.research.att.com/vnc/intouch.html > --------------------------------------------------------------------- --------------------------------------------------------------------- To unsubscribe, mail [EMAIL PROTECTED] with the line: 'unsubscribe vnc-list' in the message BODY See also: http://www.uk.research.att.com/vnc/intouch.html ---------------------------------------------------------------------
