BuildGit » History » Revision 2
Revision 1 (stbuehler, 2009-02-06 20:43) → Revision 2/6 (stbuehler, 2009-02-18 22:48)
h1. SVN
h3. Checkout
* Anonymous: <pre>svn co svn://svn.lighttpd.net/spawn-fcgi/trunk spawn-fcgi</pre>
* Developer: <pre>svn co svn+ssh://svn@svn.lighttpd.net/spawn-fcgi/trunk spawn-fcgi</pre>
h3. Generate configure
<pre>
cd spawn-fcgi
./autogen.sh
</pre>
h3. Configure (using a separate build dir)
<pre>
mkdir build
cd build
../configure
</pre>
h3. Build
<pre>
make
</pre>
h3. cmake
If you don't like automake, you may try cmake as described in [[Build]] - @autogen.sh@ isn't needed for that.