Skip to content

Instantly share code, notes, and snippets.

@soee
Forked from oskarnrk/mod_xml2enc-installer.sh
Last active August 29, 2015 14:23
Show Gist options
  • Save soee/c4d1ebac2cddcaf42feb to your computer and use it in GitHub Desktop.
Save soee/c4d1ebac2cddcaf42feb to your computer and use it in GitHub Desktop.
#!/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