Skip to content

Commit

Permalink
Update some libraries for buildbot
Browse files Browse the repository at this point in the history
  • Loading branch information
sfan5 committed Feb 12, 2020
1 parent 91eef64 commit 2d5e0ce
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
16 changes: 7 additions & 9 deletions util/buildbot/buildwin32.sh
Expand Up @@ -20,26 +20,24 @@ packagedir=$builddir/packages
libdir=$builddir/libs

# Test which win32 compiler is present
which i586-mingw32msvc-windres > /dev/null 2>&1 && toolchain_file=$dir/toolchain_i586-mingw32msvc.cmake
which i686-w64-mingw32-windres > /dev/null 2>&1 && toolchain_file=$dir/toolchain_i646-w64-mingw32.cmake
which i586-mingw32msvc-windres &>/dev/null && toolchain_file=$dir/toolchain_i586-mingw32msvc.cmake
which i686-w64-mingw32-windres &>/dev/null && toolchain_file=$dir/toolchain_i646-w64-mingw32.cmake

if [ -z "$toolchain_file" ]
then
if [ -z "$toolchain_file" ]; then
echo "Unable to determine which mingw32 compiler to use"
exit 1
else
echo "Using $toolchain_file"
fi
echo "Using $toolchain_file"

irrlicht_version=1.8.4
ogg_version=1.3.2
vorbis_version=1.3.5
curl_version=7.65.3
gettext_version=0.19.8.1
freetype_version=2.9.1
gettext_version=0.20.1
freetype_version=2.10.1
sqlite3_version=3.27.2
luajit_version=2.1.0-beta3
leveldb_version=1.20
leveldb_version=1.22
zlib_version=1.2.11

mkdir -p $packagedir
Expand Down
6 changes: 3 additions & 3 deletions util/buildbot/buildwin64.sh
Expand Up @@ -24,11 +24,11 @@ irrlicht_version=1.8.4
ogg_version=1.3.2
vorbis_version=1.3.5
curl_version=7.65.3
gettext_version=0.19.8.1
freetype_version=2.9.1
gettext_version=0.20.1
freetype_version=2.10.1
sqlite3_version=3.27.2
luajit_version=2.1.0-beta3
leveldb_version=1.20
leveldb_version=1.22
zlib_version=1.2.11

mkdir -p $packagedir
Expand Down

0 comments on commit 2d5e0ce

Please sign in to comment.