Quote:
Originally Posted by satanselbow
There is qjoypad which will also need compiling on fedora
http://qjoypad.sourceforge.net/#download
You will need qt-devel as a dep.
You will need to explicitly state the path to qmake - due to fedora's ming wrapper with:
Code:
./config --qmake4bin=/usr/bin/qmake-qt4
Additionally the makefile may need a tweak with:
Code:
...
LIBS = $(SUBLIBS) -L/usr/lib -lXtst -lQtGui -lQtCore -lpthread -lX11
...
due to a XtestSomethingorOther missing/misplaced library 
|
I modified the Makefile as you suggested and ran make. But I got the following errors.
g++ -c -pipe -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -O2 -Wall -W -D_REENTRANT -DDEVDIR="/dev/input" -DICON24="/usr/local/share/pixmaps/qjoypad/icon24.png" -DICON64="/usr/local/share/pixmaps/qjoypad/icon64.png" -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/lib64/qt4/mkspecs/linux-g++ -I. -I/usr/include/QtCore -I/usr/include/QtGui -I/usr/include -I. -Itrayicon -I. -o axis.o axis.cpp
In file included from component.h:13:0,
from axis.h:8,
from axis.cpp:1:
event.h:5:34: fatal error: X11/extensions/XTest.h: No such file or directory
compilation terminated.