Project

General

Profile

BuildGit » History » Revision 4

Revision 3 (stbuehler, 2012-08-11 10:42) → Revision 4/6 (stbuehler, 2019-08-20 15:05)

h1. SVN 

 h3. Checkout 

 * Anonymous: <pre>git checkout https://git.lighttpd.net/spawn-fcgi.git</pre> <pre>svn co svn://svn.lighttpd.net/spawn-fcgi/trunk spawn-fcgi</pre> 
 * Developer: <pre>git checkout git@lighttpd.net:spawn-fcgi</pre> <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.