@@ -96,7 +96,7 @@ if [ -z ${TRAVIS_JOB_ID} ] || [ ! -d "${DEPENDENCY_INSTALL_PATH}/lib/" ]; then
96
96
echo " "
97
97
echo " Building libogg (${OGG_VERSION} )"
98
98
DIR=$( mktemp -d liboggXXX) && cd ${DIR} && \
99
- curl -O http://downloads.xiph.org/releases/ogg/libogg-${OGG_VERSION} .tar.gz&& \
99
+ wget http://downloads.xiph.org/releases/ogg/libogg-${OGG_VERSION} .tar.gz&& \
100
100
tar xzf libogg-${OGG_VERSION} .tar.gz&& \
101
101
cd libogg-${OGG_VERSION} && \
102
102
./configure --prefix=" ${DEPENDENCY_INSTALL_PATH} " --disable-shared --with-pic&& \
@@ -108,7 +108,7 @@ if [ -z ${TRAVIS_JOB_ID} ] || [ ! -d "${DEPENDENCY_INSTALL_PATH}/lib/" ]; then
108
108
echo " "
109
109
echo " Building libvorbis (${VORBIS_VERSION} )"
110
110
DIR=$( mktemp -d libvorbisXXX) && cd ${DIR} && \
111
- curl -O http://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VERSION} .tar.gz&& \
111
+ wget http://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VERSION} .tar.gz&& \
112
112
tar xzf libvorbis-${VORBIS_VERSION} .tar.gz&& \
113
113
cd libvorbis-${VORBIS_VERSION} && \
114
114
./configure --prefix=" ${DEPENDENCY_INSTALL_PATH} " --with-ogg=" ${DEPENDENCY_INSTALL_PATH} " --disable-shared --with-pic&& \