Created
August 31, 2010 23:45
-
-
Save gtzilla/559985 to your computer and use it in GitHub Desktop.
install simplehttp/simplequeue on unbuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Installing simplehttp/simplequeue on Ubuntu (10 LTS?) in 6 steps with a 'clean' build. | |
1. need a cc compler | |
http://ubuntuforums.org/showthread.php?t=123542 | |
sudo apt-get install linux-kernel-headers | |
sudo apt-get install build-essential | |
2. Need json-c, libjson | |
http://joysofprogramming.com/install-json-c-in-linux/ | |
apt-get install libjson0 libjson0-dev | |
3. Need Lib Event for simplehttp | |
apt-get install libevent-dev | |
4. need simplehttp source code | |
## need SVN or just upload it from another machine if you don't want to install svn... | |
http://code.google.com/p/simplehttp/source/checkout | |
Where ever you put the simplehttp trunk, cd into server | |
5. install simplehttp. | |
export LIBEVENT=/usr/local | |
make && make install | |
6. Install simplequeue | |
cd ../simplequeue | |
make && make install | |
Note | |
Done. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment