[asterisk-scf-commits] asterisk-scf/integration/gitall.git branch "master" updated.
Commits to the Asterisk SCF project code repositories
asterisk-scf-commits at lists.digium.com
Wed Dec 8 14:55:13 CST 2010
branch "master" has been updated
via 350c834b24c0eda83bd43013c6a347e288b3cbb5 (commit)
from 41843f8f7d20f496a73b6ed56374c2bdab241fa1 (commit)
Summary of changes:
gitall-asterisk-scf.sh | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
- Log -----------------------------------------------------------------
commit 350c834b24c0eda83bd43013c6a347e288b3cbb5
Author: Ken Hunt <ken.hunt at digium.com>
Date: Wed Dec 8 14:53:57 2010 -0600
Added logic to insure config_site.h exists for pjproject on Windows.
diff --git a/gitall-asterisk-scf.sh b/gitall-asterisk-scf.sh
index 4027fed..90a8784 100755
--- a/gitall-asterisk-scf.sh
+++ b/gitall-asterisk-scf.sh
@@ -155,8 +155,24 @@ EOF
fi
echo " "
done
+
+ touchpjsiteconfig
+
} # pull
+
+# Insure pjproject config_site.h file exists.
+function touchpjsiteconfig()
+{
+ case $(uname -s) in
+ MINGW32*) # fMake sure that config_site.h exists for Windows.
+ echo "Touching pjproject's config_site.h"
+ touch ./pjproject/pjlib/include/pj/config_site.h
+ ;;
+ esac
+
+} # touchpjsiteconfig
+
function passthrough()
{
for repo in . "${repos[@]}"; do
-----------------------------------------------------------------------
--
asterisk-scf/integration/gitall.git
More information about the asterisk-scf-commits
mailing list