linux - While using make command to install touch egg -


i'm trying install touchegg, following error i'm getting while trying use make command in su mode:

root@pg04954:/home/esrsank/downloads/touchegg-1.1# make  g++ -m64 -wl,-o1 -o touchegg config.o gesturecollector.o gesturehandler.o  gesturefactory.o gesture.o gesturetypeenum.o gesturedirectionenum.o  actiontypeenum.o actionfactory.o minimizewindow.o closewindow.o  maximizerestorewindow.o showdesktop.o sendkeys.o changedesktop.o  resizewindow.o movewindow.o runcommand.o draganddrop.o changeviewport.o  mouseclick.o scroll.o windowlistener.o main.o touchegg.o moc_gesturecollector.o  moc_gesturehandler.o moc_gesturetypeenum.o moc_gesturedirectionenum.o     moc_actiontypeenum.o moc_windowlistener.o moc_touchegg.o    - l/usr/lib/x86_64-linux-gnu -lutouch-geis -lx11 -lxtst -lxext -lqtxml -lqtgui  -lqtcore -lpthread   /usr/bin/ld: cannot find -lutouch-geis collect2: ld returned 1 exit status make: *** [touchegg] error 1 

any solutions?

it can't find libutouch-geis, either because isn't installed or because location of library isn't in linker path.

the instructions on this page suggest installing following:

$ sudo apt-get install build-essential libqt4-dev utouch libgeis-dev libx11-6 libxtst-dev 

then running:

 $ qmake  $ make  $ sudo make install 

Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -