summaryrefslogtreecommitdiff
path: root/INSTALL.txt
diff options
context:
space:
mode:
authorDavid M. Lee <dlee@digium.com>2013-01-07 14:24:28 -0600
committerDavid M. Lee <dlee@digium.com>2013-01-07 14:24:28 -0600
commitf3ab456a17af1c89a6e3be4d20c5944853df1cb0 (patch)
treed00e1a332cd038a6d906a1ea0ac91e1a4458e617 /INSTALL.txt
Import pjproject-2.0.1
Diffstat (limited to 'INSTALL.txt')
-rw-r--r--INSTALL.txt48
1 files changed, 48 insertions, 0 deletions
diff --git a/INSTALL.txt b/INSTALL.txt
new file mode 100644
index 0000000..943315f
--- /dev/null
+++ b/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!
+