Skip to content
Snippets Groups Projects
Commit 29d7fc38 authored by Alexandre Bourget's avatar Alexandre Bourget
Browse files

Add documentation to libiax2. Update ignores for that module. Update Doxyfile-server

Removed also the now-unused libiax2.svn20060606.tar.gz that was included.

Remove also the libiax2.sh file. TODO: we need to automate the build of
libiax2 from that 'libs' directory.
parent d60bfe0b
No related branches found
No related tags found
No related merge requests found
......@@ -39,6 +39,18 @@ doc/*.html
# Ignore temp libs stuff
tools/portaudio
# Ignore sub-modules stuff
/libs/libiax2/doc/html
/libs/libiax2/config.*
/libs/libiax2/autom4te.cache
/libs/libiax2/src/.libs
/libs/libiax2/libtool
/libs/libiax2/ltmain.sh
/libs/libiax2/iax-config
/libs/libiax2/configure
# Ignore temp files
*~
......
......@@ -453,7 +453,7 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.
INPUT = src src/audio src/zeroconf src/config src/gui/server
INPUT = src src/audio src/zeroconf src/config src/gui/server src/gui
# If the value of the INPUT tag contains directories, you can use the
# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
......
# CVS Web: http://digium-cvs.netmonks.ca/viewcvs.cgi/libiax2/
date=20060404
lib=libiax2
if [ ! -d $lib ]; then
echo "Welcome to the installation of $lib"
echo -n "Do you want to extract the $date tar.gz or get from svn? [targz/svn]: "
read response
if [ $response == "svn" ]; then
echo "Downloading libiax2 from source... (may take a long time)"
svn checkout http://svn.digium.com/svn/libiax2/trunk libiax2
else
file="$lib.svn$date.tar.gz"
echo "Extracting libiax2 from $file..."
tar xzvf $file
fi
fi
cd libiax2
if [ ! -f configure ]; then
./gen.sh
fi
./configure && make
File deleted
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment