I'm banging my head against the wall here. I'm trying to compile a static linked binary of the Xvfb virtual framebuffer.
http://manpages.ubuntu.com/manpages/natty/man1/Xvfb.1.html
Right now I'm compiling from source like this:
$ sudo apt-get build-dep xvfb
$ apt-get source Xvfb
$ cd xorg-source
$ ./configure --enable-shared=no
$ make
This still results in a compiled binary, but it's still dynamically linked (I'm checking with this command)
find -iname Xvfb -type f -exec file {} \;
It's probably because I need to static link all the dependencies, but I'm having trouble proceeding.