]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - .travis-before_install-xonotic.sh
zone: Add Z_ counterparts for Realloc and strdup
[xonotic/darkplaces.git] / .travis-before_install-xonotic.sh
index 8b45d4866889dca3dd08dd406c04845c871e4fe0..dc3cccea5c457b1e601914f0fbbe860bd6773564 100755 (executable)
@@ -11,22 +11,24 @@ 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 ./configure --enable-static --disable-shared --prefix="$USRLOCAL" \
+        --enable-video-x11-xinput --enable-video-x11-xrandr ||\ cat config.log
       i386 make
       i386 make install
       )
       ;;
     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
-      ./configure --enable-static --disable-shared --prefix="$USRLOCAL"
+      cd SDL2-2.0.10
+      ./configure --enable-static --disable-shared --prefix="$USRLOCAL" \
+        --enable-video-x11-xinput --enable-video-x11-xrandr ||\ cat config.log
       make
       make install
       )
@@ -35,13 +37,11 @@ for os in "$@"; do
       git archive --format=tar --remote=git://de.git.xonotic.org/xonotic/xonotic.git \
         --prefix=".icons/" master:"misc/logos/icons_ico" | tar xvf -
       mv .icons/xonotic.ico darkplaces.ico
-      wget -qO- http://beta.xonotic.org/win-builds.org/cross_toolchain_32.tar.xz | tar xaJvf - -C"$USRLOCAL" opt/cross_toolchain_32
       ;;
     win64)
       git archive --format=tar --remote=git://de.git.xonotic.org/xonotic/xonotic.git \
         --prefix=".icons/" master:"misc/logos/icons_ico" | tar xvf -
       mv .icons/xonotic.ico darkplaces.ico
-      wget -qO- http://beta.xonotic.org/win-builds.org/cross_toolchain_64.tar.xz | tar xvJf - -C"$USRLOCAL" opt/cross_toolchain_64
       ;;
     osx)
       git archive --format=tar --remote=git://de.git.xonotic.org/xonotic/xonotic.git \