Skip to content

Commit b11e1db

Browse files
committedOct 19, 2014
Update the cURL the buildbot uses to 7.38.0
1 parent 076c5ee commit b11e1db

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
 

‎util/buildbot/buildwin32.sh

+6-6
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ toolchain_file=$dir/toolchain_mingw.cmake
1616
irrlicht_version=1.8.1
1717
ogg_version=1.2.1
1818
vorbis_version=1.3.3
19-
curl_version=7.18.0
19+
curl_version=7.38.0
2020
gettext_version=0.14.4
2121
freetype_version=2.3.5
2222
luajit_version=2.0.1
@@ -41,8 +41,8 @@ cd $builddir
4141
-c -O $packagedir/libvorbis-$vorbis_version-dev.7z
4242
[ -e $packagedir/libvorbis-$vorbis_version-dll.7z ] || wget http://sfan5.pf-control.de/libvorbis-$vorbis_version-dll.7z \
4343
-c -O $packagedir/libvorbis-$vorbis_version-dll.7z
44-
[ -e $packagedir/libcurl-$curl_version-win32-msvc.zip ] || wget http://curl.haxx.se/download/libcurl-$curl_version-win32-msvc.zip \
45-
-c -O $packagedir/libcurl-$curl_version-win32-msvc.zip
44+
[ -e $packagedir/libcurl-$curl_version.zip ] || wget http://sfan5.pf-control.de/libcurl-$curl_version-win32.zip \
45+
-c -O $packagedir/libcurl-$curl_version.zip
4646
[ -e $packagedir/gettext-$gettext_version.zip ] || wget http://sfan5.pf-control.de/gettext-$gettext_version.zip \
4747
-c -O $packagedir/gettext-$gettext_version.zip
4848
[ -e $packagedir/libfreetype-$freetype_version.zip ] || wget http://sfan5.pf-control.de/libfreetype-$freetype_version-win32.zip \
@@ -62,7 +62,7 @@ cd $libdir
6262
[ -d libogg/bin ] || 7z x -y -olibogg $packagedir/libogg-$ogg_version-dll.7z
6363
[ -d libvorbis/include ] || 7z x -y -olibvorbis $packagedir/libvorbis-$vorbis_version-dev.7z
6464
[ -d libvorbis/bin ] || 7z x -y -olibvorbis $packagedir/libvorbis-$vorbis_version-dll.7z
65-
[ -d libcurl ] || unzip -o $packagedir/libcurl-$curl_version-win32-msvc.zip -d libcurl
65+
[ -d libcurl ] || unzip -o $packagedir/libcurl-$curl_version.zip -d libcurl
6666
[ -d gettext ] || unzip -o $packagedir/gettext-$gettext_version.zip -d gettext
6767
[ -d freetype ] || unzip -o $packagedir/libfreetype-$freetype_version.zip -d freetype
6868
[ -d openal_stripped ] || unzip -o $packagedir/openal_stripped.zip
@@ -123,9 +123,9 @@ cmake .. \
123123
-DOPENAL_LIBRARY=$libdir/openal_stripped/lib/libOpenAL32.dll.a \
124124
-DOPENAL_DLL=$libdir/openal_stripped/bin/OpenAL32.dll \
125125
\
126-
-DCURL_DLL=$libdir/libcurl/libcurl.dll \
126+
-DCURL_DLL=$libdir/libcurl/bin/libcurl-4.dll \
127127
-DCURL_INCLUDE_DIR=$libdir/libcurl/include \
128-
-DCURL_LIBRARY=$libdir/libcurl/libcurl.lib \
128+
-DCURL_LIBRARY=$libdir/libcurl/lib/libcurl.dll.a \
129129
\
130130
-DCUSTOM_GETTEXT_PATH=$libdir/gettext \
131131
-DGETTEXT_MSGFMT=`which msgfmt` \

‎util/buildbot/buildwin64.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ toolchain_file=$dir/toolchain_mingw64.cmake
1616
irrlicht_version=1.8.1
1717
ogg_version=1.3.1
1818
vorbis_version=1.3.4
19-
curl_version=7.36.0
19+
curl_version=7.38.0
2020
gettext_version=0.18.2
2121
freetype_version=2.5.3
2222
luajit_version=2.0.3

0 commit comments

Comments
 (0)
Please sign in to comment.