@@ -57,7 +57,7 @@ if [ -z ${TRAVIS_JOB_ID} ] || [ ! -d "${DEPENDENCY_INSTALL_PATH}/lib/" ]; then
57
57
curl -L -Os http://downloads.sourceforge.net/faac/faac-${FAAC_VERSION} .tar.gz && \
58
58
tar xzf faac-${FAAC_VERSION} .tar.gz && \
59
59
cd faac-${FAAC_VERSION} && \
60
- # sed -i '126d' common/mp4v2/mpeg4ip.h && \
60
+ sed -i ' 126d' common/mp4v2/mpeg4ip.h && \
61
61
./bootstrap && \
62
62
./configure --prefix=" ${DEPENDENCY_INSTALL_PATH} " --bindir=" ${DEPENDENCY_INSTALL_PATH} /bin" --enable-shared --with-mp4v2=no && \
63
63
make -k > ${DEPENDENCY_LOG_FILE} 2>&1 && \
@@ -115,17 +115,18 @@ if [ -z ${TRAVIS_JOB_ID} ] || [ ! -d "${DEPENDENCY_INSTALL_PATH}/lib/" ]; then
115
115
rm -rf ${DIR}
116
116
117
117
# libtheora
118
- echo " "
119
- echo " Building libtheora (${THEORA_VERSION} )"
120
- DIR=$( mktemp -d libtheoraXXX) && cd ${DIR} && \
121
- curl -O http://downloads.xiph.org/releases/theora/libtheora-${THEORA_VERSION} .tar.bz2 && \
122
- tar xvjf libtheora-${THEORA_VERSION} .tar.bz2 && \
123
- cd libtheora-${THEORA_VERSION} && \
124
- ./configure --prefix=" ${DEPENDENCY_INSTALL_PATH} " && \
125
- make -k > ${DEPENDENCY_LOG_FILE} 2>&1 && \
126
- make install && \
127
- make check && \
128
- rm -rf ${DIR}
118
+ # Compilation error with clang
119
+ # echo ""
120
+ # echo "Building libtheora (${THEORA_VERSION})"
121
+ # DIR=$(mktemp -d libtheoraXXX) && cd ${DIR} && \
122
+ # curl -O http://downloads.xiph.org/releases/theora/libtheora-${THEORA_VERSION}.tar.bz2 && \
123
+ # tar xvjf libtheora-${THEORA_VERSION}.tar.bz2 && \
124
+ # cd libtheora-${THEORA_VERSION} && \
125
+ # ./configure --prefix="${DEPENDENCY_INSTALL_PATH}" && \
126
+ # make -k > ${DEPENDENCY_LOG_FILE} 2>&1 && \
127
+ # make install && \
128
+ # make check && \
129
+ # rm -rf ${DIR}
129
130
130
131
# libvpx
131
132
# https://trac.ffmpeg.org/ticket/4956
@@ -141,7 +142,7 @@ if [ -z ${TRAVIS_JOB_ID} ] || [ ! -d "${DEPENDENCY_INSTALL_PATH}/lib/" ]; then
141
142
rm -rf ${DIR}
142
143
143
144
# libopus
144
- # Compile error on OSX
145
+ # Compilation error on OSX
145
146
# echo ""
146
147
# echo "Building libopus (last version)"
147
148
# DIR=$(mktemp -d libopusXXX) && cd ${DIR} && \
@@ -157,7 +158,7 @@ if [ -z ${TRAVIS_JOB_ID} ] || [ ! -d "${DEPENDENCY_INSTALL_PATH}/lib/" ]; then
157
158
export RELEASE_OPTIONS=--disable-debug
158
159
export DEBUG_OPTIONS=--enable-debug=3\ --disable-optimizations\ --disable-sse\ --disable-stripping
159
160
export LICENSING_OPTIONS=--enable-gpl\ --enable-nonfree
160
- export THIRD_PARTIES_OPTIONS=--enable-libfaac\ --enable-libmp3lame\ --enable-libx264\ --enable-libxvid\ --enable-avresample\ --enable-libfdk_aac\ --enable-libvorbis\ --enable-libtheora \ --enable- libvpx
161
+ export THIRD_PARTIES_OPTIONS=--enable-libfaac\ --enable-libmp3lame\ --enable-libx264\ --enable-libxvid\ --enable-avresample\ --enable-libfdk_aac\ --enable-libvorbis\ --enable-libvpx
161
162
162
163
if [[ ${DEPENDENCY_NAME} == " ffmpeg" ]]; then
163
164
0 commit comments