I just cloned the latest varnish git-repository to try and apply an enhancement (from git://github.com/varnish/Varnish-Cache.git)
All the dependencies listed on the website have been installed.
I run the following commands:
./autogen.sh
-> works fine
./configure
-> works fine too
make
-> fails with the following error:
creating libvmod_std.la
(cd .libs && rm -f libvmod_std.la && ln -s ../libvmod_std.la libvmod_std.la)
========================================
You need rst2man installed to make dist
========================================
make[3]: *** [vmod_std.3] Error 1
make[3]: Leaving directory `/tmp/varnish-cache/lib/libvmod_std'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/tmp/varnish-cache/lib'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/tmp/varnish-cache'
make: *** [all] Error 2
I have tried installing rst2man but it cannot be found since it's a virtual package?:
apt-get install rst2man
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package rst2man
Then I tried installing the python-docutils but that also did not solve the issue.
Any help would be appreciated!
Thanks in advance...
EDIT:
Commands I have ran after reading the answer:
I rebooted (first git clone is now gone since it was located in the /tmp directory)
cd /usr/share/
git clone git://github.com/varnish/Varnish-Cache.git
apt-get install python-docutils
./autogen.sh
./configure
make
=> Same error ;)