[asterisk-scf-commits] asterisk-scf/integration/gitall.git branch "dlee-work" created.
Commits to the Asterisk SCF project code repositories
asterisk-scf-commits at lists.digium.com
Thu Sep 2 13:40:22 CDT 2010
branch "dlee-work" has been created
at 5dd2135a6fe62cc7aee6a84e28f2882a7cadcfb7 (commit)
- Log -----------------------------------------------------------------
commit 5dd2135a6fe62cc7aee6a84e28f2882a7cadcfb7
Author: David M. Lee <dlee at digium.com>
Date: Thu Sep 2 13:31:06 2010 -0500
Adding URL for pjsip to script output.
diff --git a/gitall-asterisk-scf.sh b/gitall-asterisk-scf.sh
index 8f44c88..a271399 100755
--- a/gitall-asterisk-scf.sh
+++ b/gitall-asterisk-scf.sh
@@ -94,6 +94,7 @@ if [ ! -d pjproject ]; then
echo " "
echo "--------- "
echo "REMINDER: You must manually install pjproject in this directory."
+ echo " http://www.pjsip.org/download.htm"
echo "--------- "
echo " "
fi
commit 66d58bc8ace9aafb21cebb9d414e07b5c5b66bf2
Author: David M. Lee <dlee at digium.com>
Date: Thu Sep 2 13:15:59 2010 -0500
Added note to README about needing ICE installed.
diff --git a/README.txt b/README.txt
index c8b9b91..bf2008e 100644
--- a/README.txt
+++ b/README.txt
@@ -8,6 +8,9 @@ Prequisites
a.) You have SSH certificate installed so that ssh-agent can be used.
b.) You have boost libs installed.
c.) You have lua installed.
+ d.) Ice version 3.4 installed, with ICE_HOME set. Note that we
+ has patches that have not yet been accepted upstream. Clone
+ git at git.asterisk.org:asterisk-scf/release/ice and build from source.
To set up for an intergrated build:
------------------------------------
commit d86b5d019b76799826969dc276c509c2c7b8f010
Author: David M. Lee <dlee at digium.com>
Date: Tue Aug 31 23:58:34 2010 -0500
Adding a .gitignore for cloned repos
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..1f90950
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,7 @@
+bridging
+cmake
+media_rtp_pjmedia
+routing
+servicediscovery
+sip
+slice
commit 5c422ea274048a6b0611f8af341fc02c981a02a5
Author: David M. Lee <dlee at digium.com>
Date: Tue Aug 31 23:57:26 2010 -0500
Only start ssh-agent if needed.
diff --git a/gitall-asterisk-scf.sh b/gitall-asterisk-scf.sh
index 01ce0d8..8f44c88 100755
--- a/gitall-asterisk-scf.sh
+++ b/gitall-asterisk-scf.sh
@@ -10,10 +10,14 @@
# exit 1
#fi
-eval `ssh-agent`
+# if we don't already have an ssh-agent running, fire one up
+if test ${SSH_AUTH_SOCK-no} = no; then
+ eval `ssh-agent`
-echo "HEY... SSH_AGENT_PID = ${SSH_AGENT_PID}"
-exec `ssh-add ${1}`
+ echo "HEY... SSH_AGENT_PID = ${SSH_AGENT_PID}"
+ exec `ssh-add ${1}`
+ kill_agent=yes
+fi
gitdepot=git.asterisk.org
cmake=asterisk-scf/release/cmake
@@ -93,3 +97,7 @@ if [ ! -d pjproject ]; then
echo "--------- "
echo " "
fi
+
+if test ${kill_agent-no} != no; then
+ kill $SSH_AGENT_PID
+fi
-----------------------------------------------------------------------
--
asterisk-scf/integration/gitall.git
More information about the asterisk-scf-commits
mailing list