Skip to content

Commit 32fb2dd

Browse files
author
Clement Champetier
committed
Travis: removed installation of faac third party
Compilation error on OSX.
1 parent 4405c97 commit 32fb2dd

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

tools/travis/linux.install.deps.sh

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -49,20 +49,21 @@ if [ -z ${TRAVIS_JOB_ID} ] || [ ! -d "${DEPENDENCY_INSTALL_PATH}/lib/" ]; then
4949

5050

5151
# faac
52+
# Compilation error on OSX
5253
# http://stackoverflow.com/a/4320377
5354
# http://sourceforge.net/p/faac/bugs/162/#46a0
54-
echo ""
55-
echo "Building faac (${FAAC_VERSION})"
56-
DIR=$(mktemp -d faacXXX) && cd ${DIR} && \
57-
curl -L -Os http://downloads.sourceforge.net/faac/faac-${FAAC_VERSION}.tar.gz && \
58-
tar xzf faac-${FAAC_VERSION}.tar.gz && \
59-
cd faac-${FAAC_VERSION} && \
60-
sed -i '126d' common/mp4v2/mpeg4ip.h && \
61-
./bootstrap && \
62-
./configure --prefix="${DEPENDENCY_INSTALL_PATH}" --bindir="${DEPENDENCY_INSTALL_PATH}/bin" --enable-shared --with-mp4v2=no && \
63-
make -k > ${DEPENDENCY_LOG_FILE} 2>&1 && \
64-
make install && \
65-
rm -rf ${DIR}
55+
# echo ""
56+
# echo "Building faac (${FAAC_VERSION})"
57+
# DIR=$(mktemp -d faacXXX) && cd ${DIR} && \
58+
# curl -L -Os http://downloads.sourceforge.net/faac/faac-${FAAC_VERSION}.tar.gz && \
59+
# tar xzf faac-${FAAC_VERSION}.tar.gz && \
60+
# cd faac-${FAAC_VERSION} && \
61+
# sed -i '126d' common/mp4v2/mpeg4ip.h && \
62+
# ./bootstrap && \
63+
# ./configure --prefix="${DEPENDENCY_INSTALL_PATH}" --bindir="${DEPENDENCY_INSTALL_PATH}/bin" --enable-shared --with-mp4v2=no && \
64+
# make -k > ${DEPENDENCY_LOG_FILE} 2>&1 && \
65+
# make install && \
66+
# rm -rf ${DIR}
6667

6768
# xvid
6869
echo ""
@@ -159,7 +160,7 @@ if [ -z ${TRAVIS_JOB_ID} ] || [ ! -d "${DEPENDENCY_INSTALL_PATH}/lib/" ]; then
159160
export RELEASE_OPTIONS=--disable-debug
160161
export DEBUG_OPTIONS=--enable-debug=3\ --disable-optimizations\ --disable-sse\ --disable-stripping
161162
export LICENSING_OPTIONS=--enable-gpl\ --enable-nonfree
162-
export THIRD_PARTIES_OPTIONS=--enable-libfaac\ --enable-libmp3lame\ --enable-libx264\ --enable-libxvid\ --enable-avresample\ --enable-libvorbis\ --enable-libvpx
163+
export THIRD_PARTIES_OPTIONS=--enable-libmp3lame\ --enable-libx264\ --enable-libxvid\ --enable-avresample\ --enable-libvorbis\ --enable-libvpx
163164

164165
if [[ ${DEPENDENCY_NAME} == "ffmpeg" ]]; then
165166

0 commit comments

Comments
 (0)