After I solved my first problem I got into another one. Looks like I'm missing some kind of library, making the linker complain that the -lXi is not working.

I've included most of the Xorg devel packages, what more do I need?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

When linking to "-lXi" the compiler looks for a file with name starting with "libXi.so" (followed by some version number). The command

locate libXi.so | xargs rpm -qf | sort -u

gives

libXi-1.1.3-4.fc9.i386
libXi-1.1.3-4.fc9.x86_64
libXi-debuginfo-1.1.3-4.fc9.x86_64
libXi-devel-1.1.3-4.fc9.x86_64

on my Fedora 10 system, so you are probably missing the libXi-devel package.

link|improve this answer
(the -devel package creates a symlink from libXi-x.y.z to libXi.so) – Marco van de Voort May 2 '09 at 10:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.