This howto explains what you should do to build mod_spdy with Apache 2.4 on Ubuntu 14.04 ( Trusty Tahr ). You can also download mod_spdy for Ubuntu 14.04 on this page.
Preparing the build environment
rivy@buildhost:~/mod-spdy$ sudo apt-get -y install git g++ apache2 libapr1-dev libaprutil1-dev patch binutils make devscripts
Cloning the 2.4.7 branch
It’s important that we specify the correct branch. In the master branch you can find all code that works for apache 2.4.10. Since Ubuntu 14.04 is still using Apache 2.4.7, make sure to specify that branch.
rivy@buildhost:~/mod-spdy$ git clone -b apache-2.4.7 https://github.com/eousphoros/mod-spdy.git
Once you downloaded the branch, you should be able to change directory to it.
rivy@buildhost:~/mod-spdy$ cd mod-spdy/src
rivy@buildhost:~/mod-spdy/mod-spdy/src$
Building mod_spdy
Continue reading →