Oooooh, before trying to build/generate the qvfb tool by myself, I forgot to choose the Qt lib I just built... So I entered again in the Qt Creator to update the qvfb ".pro" project by setting reference to the correct Qt lib (the one I built by myself), changing the default reference value "QT in path" by the "4.7.1" one, which, I guess, was the one corresponding to what I just built before... Then trying to rebuild qvfb goes farther but stops again with a new compiling error (argggh... !?), complaining about one more missing "X11/extensions/XTest.h" include file...
Well I looked around the web with Google and I found that "XTest.h" was belonging to "libxtst" which I guess was not installed by default on my Fedora 14 system... So I did a "yum search libxtst" to look for exact package/component name for "libxtst" on my Fedora 14 system,
and then, I decided to install
libXtst.x86_64 : X.Org X11 libXtst runtime library
and
libXtst-devel.x86_64 : X.Org X11 libXtst development package:
as root:
yum install libXtst.x86_64 libXtst-devel.x86_64
As a result, I succesfully regenerated the binary executable file for qvfb tool... Great !
:-)
Alain-Pierre