[asterisk-commits] dsessions: testsuite/bamboo/trunk r1355 - /bamboo/trunk/bin/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Jan 31 09:01:37 CST 2011
Author: dsessions
Date: Mon Jan 31 09:01:32 2011
New Revision: 1355
URL: http://svnview.digium.com/svn/testsuite?view=rev&rev=1355
Log:
Added support for building slice plugins in Asterisk SCF.
Modified:
bamboo/trunk/bin/build-asterisk-scf.sh
Modified: bamboo/trunk/bin/build-asterisk-scf.sh
URL: http://svnview.digium.com/svn/testsuite/bamboo/trunk/bin/build-asterisk-scf.sh?view=diff&rev=1355&r1=1354&r2=1355
==============================================================================
--- bamboo/trunk/bin/build-asterisk-scf.sh (original)
+++ bamboo/trunk/bin/build-asterisk-scf.sh Mon Jan 31 09:01:32 2011
@@ -22,6 +22,10 @@
#
if [[ "$COMPONENT_NAM" == "ice" ]]
then
+ echo ""
+ echo ""
+ echo "Building Ice"
+ echo ""
cd cpp
if [[ "$platform" == "win32" ]]
then
@@ -33,6 +37,29 @@
make install
fi
exit
+fi
+
+#
+# Build Slice Plugins
+#
+if [[ "$COMPONENT_NAM" == "slice-plugins" ]]
+then
+ echo ""
+ echo ""
+ echo "Building Slice Plugins"
+ echo ""
+ if [[ "$platform" == "win32" ]]
+ then
+ export CPP_COMPILER=VC100_EXPRESS
+ cmake .
+ nmake -F Makefile.mak
+ nmake -F Makefile.mak install
+ else
+ cmake .
+ make
+ make install
+ fi
+ exit
fi
#
More information about the asterisk-commits
mailing list