Author: jfrederic.clere(a)jboss.com
Date: 2009-02-19 12:55:49 -0500 (Thu, 19 Feb 2009)
New Revision: 2308
Modified:
trunk/build/unix/buildbin.mod_cluster.sh
Log:
Build the so only packages.
Modified: trunk/build/unix/buildbin.mod_cluster.sh
===================================================================
--- trunk/build/unix/buildbin.mod_cluster.sh 2009-02-19 17:35:57 UTC (rev 2307)
+++ trunk/build/unix/buildbin.mod_cluster.sh 2009-02-19 17:55:49 UTC (rev 2308)
@@ -225,6 +225,23 @@
cp target/*-bin.* ${build_top}/output
)
+# Build the *.so for any httpd-2.2.x using the httpd install of the previous run
+if [ "${BUILD_SYS}" != "windows" ]; then
+ BASELOC=`(cd ../mod_cluster/test/java; ant base | grep echo | sed
's:\[echo\]::' | sed 's:^ *::')`
+ for dir in `echo mod_proxy mod_manager advertise mod_slotmem mod_proxy_cluster`
+ do
+ (cd ../mod_cluster/native/$dir
+ sh buildconf
+ ./configure --with-apache=${BASELOC}/opt/jboss/httpd
+ make clean
+ make
+ cp *.so ../../target
+ )
+ done
+ (cd ../mod_cluster/target
+ tar zcf
${build_top}/output/${PACKAGE}-${build_version}-${BUILD_SYS}-${BUILD_CPU}-so.tar.gz *.so
+ )
+fi
echo "Done"
exit 0
Show replies by date