Skip to content

Instantly share code, notes, and snippets.

@ryanhs
Forked from oskarnrk/mod_xml2enc-installer.sh
Created May 27, 2016 12:56
Show Gist options
  • Save ryanhs/92b93cd30240dfa1e9b5aec51c1d96b5 to your computer and use it in GitHub Desktop.
Save ryanhs/92b93cd30240dfa1e9b5aec51c1d96b5 to your computer and use it in GitHub Desktop.
Install mod_xml2enc for Apache2 in Ubuntu 13.10 or later
#!/bin/sh
sudo apt-get install apache2-prefork-dev libxml2 libxml2-dev apache2-dev
mkdir ~/modbuild/ && cd ~/modbuild/
wget http://apache.webthing.com/svn/apache/filters/mod_xml2enc.c
wget http://apache.webthing.com/svn/apache/filters/mod_xml2enc.h
sudo apxs2 -aic -I/usr/include/libxml2 ./mod_xml2enc.c
cd ~
sudo rm -rfd ~/modbuild/
sudo service apache2 restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment