[svn-commits] pabelanger: branch pabelanger/non-root r621 - /asterisk/team/pabelanger/non-r...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Jul 28 14:27:01 CDT 2010


Author: pabelanger
Date: Wed Jul 28 14:26:57 2010
New Revision: 621

URL: http://svnview.digium.com/svn/testsuite?view=rev&rev=621
Log:
Add check for SIPp.

Modified:
    asterisk/team/pabelanger/non-root/configure
    asterisk/team/pabelanger/non-root/configure.ac
    asterisk/team/pabelanger/non-root/makeopts.in

Modified: asterisk/team/pabelanger/non-root/configure.ac
URL: http://svnview.digium.com/svn/testsuite/asterisk/team/pabelanger/non-root/configure.ac?view=diff&rev=621&r1=620&r2=621
==============================================================================
--- asterisk/team/pabelanger/non-root/configure.ac (original)
+++ asterisk/team/pabelanger/non-root/configure.ac Wed Jul 28 14:26:57 2010
@@ -36,13 +36,21 @@
 AC_PROG_RANLIB
 
 AC_PATH_PROG([LUAC], [luac], :)
+AC_PATH_PROG([SIPP], [sipp], :)
 
 if test "x${LUAC}" = "x:" ; then
 	AC_MSG_NOTICE([***])
-	AC_MSG_NOTICE([*** It appears you do not have the lua package installed.])
+	AC_MSG_NOTICE([*** It appears you do not have the lua5.1 package installed.])
 	AC_MSG_NOTICE([*** Please install it! ***])
 	exit 1
 fi
+
+if test "x${SIPP}" = "x:" ; then
+	PBX_SIPP=0
+else
+	PBX_SIPP=1
+fi
+AC_SUBST(PBX_SIPP)
 
 ACX_PTHREAD
 
@@ -64,6 +72,7 @@
 AC_SUBST(AST_DEVMODE)
 
 AST_EXT_LIB_SETUP([LUA], [Lua], [lua])
+AST_EXT_LIB_SETUP([PCAP], [Pcap], [pcap])
 
 AST_EXT_LIB_CHECK([LUA], [lua5.1], [luaL_newstate], [lua5.1/lua.h], [-lm])
 if test "x${PBX_LUA}" = "x1" ; then
@@ -74,7 +83,7 @@
         fi
 else
 	AC_MSG_NOTICE([***])
-	AC_MSG_NOTICE([*** It appears you do not have the lua development package installed.])
+	AC_MSG_NOTICE([*** It appears you do not have the lua5.1 development package installed.])
 	AC_MSG_NOTICE([*** Please install it! ***])
 	exit 1
 fi

Modified: asterisk/team/pabelanger/non-root/makeopts.in
URL: http://svnview.digium.com/svn/testsuite/asterisk/team/pabelanger/non-root/makeopts.in?view=diff&rev=621&r1=620&r2=621
==============================================================================
--- asterisk/team/pabelanger/non-root/makeopts.in (original)
+++ asterisk/team/pabelanger/non-root/makeopts.in Wed Jul 28 14:26:57 2010
@@ -5,6 +5,7 @@
 
 INSTALL=@INSTALL@
 LUAC=@LUAC@
+SIPP=@SIPP@
 
 AST_DEVMODE=@AST_DEVMODE@
 NOISY_BUILD=@NOISY_BUILD@




More information about the svn-commits mailing list