fatrix hat geschrieben:
hallo lennux... hast du mittlerweile eine lösung gefunden? habe nämlich haargenau das selbe problem....
Ja, ich habs nochmal mit LuminocityHowTo probiert. Damit gehts, wobei sich der Fehler
undefined reference to `XF86VidModeQueryVersion'
undefined reference to `XF86VidModeGetModeLine'
mit dieser Lösung beheben lässt:
Okay, I had this problem and have managed to compile now (although I haven't had a chance to run it since I've being doing this remotely via ssh).
I found that even though I had added "-lXxf86vm" to DEP_LIBS in the Makefile as suggested by Willie it wasn't turning up in the gcc command line produced by make. So I cd'd to src then manually did the gcc command that make was trying to run with "-lXxf86vm" added to the end like:
cd src
gcc -g -O2 -Wall -o luminocity async.o bits.o decoration.o display.o events.o gui.o lmc-marshal.o main.o output.o root.o texture.o toplevel.o utils.o window.o spring-model.o -pthread -L/home/tamir/luminocity/opt/luminocity/lib64 -L/usr/local/kx/lib -lgthread-2.0 -lgdk_pixbuf-2.0 -lm -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lXdamage -lXcomposite -lXfixes -lXtst -lXext -lXcursor -lXrender -lX11 -ldl -L /usr/X11R6/lib -lGL -lGLU -lXxf86vm
That worked. The other thing I had already done which may have helped is to update the X11_Xext_LIB variable to point to libXxf86vm as well. Not sure if this did anything, but can't hurt:
X11_Xext_LIB="/usr/X11R6/lib/libXext.so;/usr/X11R6/lib/libXxf86vm.so"
Anyway, hope that helps someone. Incidentally when I was googling around trying to see what was wrong it seemed all the people with this problem where running the nvidia drivers?