[pisa-src] r1189 - trunk/tools/subversion/pisa_runautobuild

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Thu, 15 Oct 2009 18:09:40 +0200

Author: biurrun
Date: Thu Oct 15 18:09:40 2009
New Revision: 1189

Log:
Test compile PISA in various different configurations.

Modified:
   trunk/tools/subversion/pisa_runautobuild

Modified: trunk/tools/subversion/pisa_runautobuild
==============================================================================
--- trunk/tools/subversion/pisa_runautobuild    Thu Oct 15 18:07:51 2009        
(r1188)
+++ trunk/tools/subversion/pisa_runautobuild    Thu Oct 15 18:09:40 2009        
(r1189)
@@ -20,6 +20,11 @@
     exit $1
 }
 
+compile_pisa()
+{
+    run_program ./autogen.sh && run_program ./configure $1 &&
+        run_program make -j16 && run_program make -j16 dist
+}
 
 HOME=/home/pisa.auto
 export PATH=$HOME/bin:$PATH
@@ -39,9 +44,13 @@
 
 cd "$CHECKOUT_DIR"
 
-# Compile PISA
-run_program ./autogen.sh && run_program ./configure &&
-    run_program make -j16 && run_program make -j16 dist
+# Compile PISA in different configurations
+compile_pisa
+compile_pisa --enable-force-shlib
+compile_pisa --enable-logging
+compile_pisa --enable-openwrt
+compile_pisa --enable-performance
+compile_pisa --enable-preauth
 
 # Compile PISA within an OpenWrt checkout
 run_program rm -f $BUILD_DIR/openwrt/dl/pisa*.tar.gz

Other related posts:

  • » [pisa-src] r1189 - trunk/tools/subversion/pisa_runautobuild - Diego Biurrun