]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
Update Xonotic's SDL version to 2.0.10
authordivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 23 Aug 2019 23:58:55 +0000 (23:58 +0000)
committerRudolf Polzer <divVerent@xonotic.org>
Sat, 24 Aug 2019 00:01:30 +0000 (02:01 +0200)
From: Mario <mario@smbclan.net>

git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12478 d7cf8633-e32d-0410-b094-e92efae38249
::stable-branch::merge=26e11a76c1f5cfbe0b7b8987c79ee3ff318979df

.travis-before_install-xonotic.sh

index bf39e00e08503b5c8d5571b319e9e7b86862535f..09e5c8ce90c3d025a042073649379b494341eb81 100755 (executable)
@@ -11,10 +11,10 @@ for os in "$@"; do
 
   case "$os" in
     linux32)
-      wget https://www.libsdl.org/release/SDL2-2.0.5.tar.gz
-      tar xf SDL2-2.0.5.tar.gz
+      wget https://www.libsdl.org/release/SDL2-2.0.10.tar.gz
+      tar xf SDL2-2.0.10.tar.gz
       (
-      cd SDL2-2.0.5
+      cd SDL2-2.0.10
       export CC="gcc -m32"
       i386 ./configure --enable-static --disable-shared --prefix="$USRLOCAL" || cat config.log
       i386 make
@@ -22,10 +22,10 @@ for os in "$@"; do
       )
       ;;
     linux64)
-      wget https://www.libsdl.org/release/SDL2-2.0.5.tar.gz
-      tar xf SDL2-2.0.5.tar.gz
+      wget https://www.libsdl.org/release/SDL2-2.0.10.tar.gz
+      tar xf SDL2-2.0.10.tar.gz
       (
-      cd SDL2-2.0.5
+      cd SDL2-2.0.10
       ./configure --enable-static --disable-shared --prefix="$USRLOCAL"
       make
       make install