]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
buildopal make sure you have flex and bison installed first
authorBrian West <brian@freeswitch.org>
Tue, 16 Dec 2008 03:56:11 +0000 (03:56 +0000)
committerBrian West <brian@freeswitch.org>
Tue, 16 Dec 2008 03:56:11 +0000 (03:56 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10787 d0543943-73ff-0310-b7d9-9358b9ac24b2

build/buildopal.sh [new file with mode: 0644]

diff --git a/build/buildopal.sh b/build/buildopal.sh
new file mode 100644 (file)
index 0000000..c0d4d3b
--- /dev/null
@@ -0,0 +1,13 @@
+#!/bin/sh
+cd /root
+svn co https://opalvoip.svn.sourceforge.net/svnroot/opalvoip/ptlib/trunk ptlib
+cd ptlib
+./configure --prefix=/usr
+make
+make install
+cd ..
+svn co https://opalvoip.svn.sourceforge.net/svnroot/opalvoip/opal/trunk opal
+cd opal
+PKG_CONFIG_PATH=/usr/lib/pkgconfig ./configure --prefix=/usr
+make
+make install