summaryrefslogtreecommitdiff
path: root/res/pjproject/INSTALL.txt
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2012-07-01 17:28:57 +0000
committerJoshua Colp <jcolp@digium.com>2012-07-01 17:28:57 +0000
commit37256ea45d7a5c088229af496df366dc42005d15 (patch)
treeabf99698af1acb0debf7dcae64d7ca8015710fd1 /res/pjproject/INSTALL.txt
parent628425ba6fdc1ce1aa6f85e33fe83f1e6eeeaa00 (diff)
Add support for ICE/STUN/TURN in res_rtp_asterisk and chan_sip.
Review: https://reviewboard.asterisk.org/r/1891/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@369517 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/pjproject/INSTALL.txt')
-rw-r--r--res/pjproject/INSTALL.txt48
1 files changed, 48 insertions, 0 deletions
diff --git a/res/pjproject/INSTALL.txt b/res/pjproject/INSTALL.txt
new file mode 100644
index 000000000..943315fb0
--- /dev/null
+++ b/res/pjproject/INSTALL.txt
@@ -0,0 +1,48 @@
+[Last update: 2007/02/18]
+
+-= INTRO=-
+
+This top level projects:
+
+ - pjlib: portability and basic framework library
+ - pjlib-util: lexical scanner, XML, STUN, MD5, DNS, etc.
+ - pjmedia: media framework and codecs
+ - pjsip: SIP stacks (core, UA layer, SIMPLE, etc.)
+ - pjsip-apps: SIP apps (pjsua, pjsip-perf)
+
+
+-= COMPILING =-
+
+On Windows:
+ - Visual Studio 6: open pjproject.dsw
+ - Visual Studio 8/2005: open pjproject-vs8.sln
+ - Embedded VisualC 4: open open pjsip-apps\build\wince-evc4\wince_demos.vcw
+ - Build pjsua
+
+With Makefile:
+ - on top level dir (e.g. ~/pjproject)
+ - ./configure && make dep && make clean && make
+
+Binaries will be in pjsip-apps/bin.
+
+
+-= PYTHON MODULE =-
+
+On Windows:
+ - Visual Studio 6: open pjsip-apps\build\pjsip_apps.dsw
+ - Build py_pjsua module
+
+With GNU and Python:
+ - cd pjsip-apps/src/py_pjsua
+ - python setup.py install
+
+One Python sample application is provided:
+ pjsip-apps/src/py_pjsua/pjsua_app.py
+
+
+-= PORTING =-
+
+ - Just need to port pjlib.
+ - PJLIB doc has detailed info how to do this.
+ - Must pass pjlib-test!
+