Remove the MP3 decoder source code and replace it with a small shell script.

Review: https://reviewboard.asterisk.org/r/836/


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@280742 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2010-08-03 18:48:45 +00:00
parent 5dfac4e449
commit b0df8f51dc
16 changed files with 38 additions and 4037 deletions

View File

@@ -0,0 +1,14 @@
#!/bin/sh -e
if [ -f addons/mp3/mpg123.h ]; then
echo "***"
echo "The MP3 source code appears to already be present and does not"
echo "need to be downloaded."
echo "***"
exit 1
fi
svn export http://svn.digium.com/svn/thirdparty/mp3/trunk addons/mp3
exit 0