Project

General

Profile

BuildGit » History » Revision 5

Revision 4 (stbuehler, 2019-08-20 15:05) → Revision 5/6 (stbuehler, 2019-08-20 15:06)

h1. Build from git SVN 

 h3. Checkout 

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