diff options
author | Cem Keylan <cem@ckyln.com> | 2021-04-01 16:28:06 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-04-01 16:28:06 +0300 |
commit | 068584726bbc4d6295b8925911ea5bcf95ab4880 (patch) | |
tree | 81d7b06dbf524e307069cd009075b9e7bd4a153c /extra/mesa | |
parent | f3d65e3b5f30300c10397ab5882e9fe0d9bb55db (diff) | |
download | repository-068584726bbc4d6295b8925911ea5bcf95ab4880.tar.gz |
Switch to libressl
This reverts commit 18c2513c2af381e5e302f5f046105e930b4bba72.
Diffstat (limited to 'extra/mesa')
-rwxr-xr-x | extra/mesa/build | 9 | ||||
-rw-r--r-- | extra/mesa/checksums | 2 | ||||
-rw-r--r-- | extra/mesa/sources | 2 | ||||
-rw-r--r-- | extra/mesa/version | 2 |
4 files changed, 12 insertions, 3 deletions
diff --git a/extra/mesa/build b/extra/mesa/build index 9d8984da..e640260e 100755 --- a/extra/mesa/build +++ b/extra/mesa/build @@ -29,6 +29,14 @@ python3 bin/git_sha1_gen.py --output include/git_sha1.h platforms=x11 cpt l wayland-protocols >/dev/null 2>&1 && platforms=$platforms,wayland +# Fix broken radeon object links +( + cd src/mesa/drivers/dri/r200 + find . -type l | while read -r link; do + ln -sf "$PWD/../radeon/$link" "$link" + done +) + meson \ --prefix=/usr \ --sysconfdir=/etc \ @@ -36,6 +44,7 @@ meson \ --localstatedir=/var \ --buildtype=release \ -Dplatforms="$platforms" \ + -Dzstd=false \ . output ninja -C output diff --git a/extra/mesa/checksums b/extra/mesa/checksums index ebfd6ca7..d9a5158f 100644 --- a/extra/mesa/checksums +++ b/extra/mesa/checksums @@ -1,2 +1,2 @@ -9c899b165497ccf816042a271ec9931d548c0a7734fb08e9945f0e9c31188b15 mesa-20.3.4.tar.gz +abe673eb92c62156f708ced5a9607573ba524eca2b6609d5fc16698ba5a09ed7 mesa-21.0.1.tar.gz 2984a6733e1d472796ceef37ad48c26f4a984bb18119bb2dbc37a44d8f6e75a4 Mako-1.1.1.tar.gz diff --git a/extra/mesa/sources b/extra/mesa/sources index c5d4df2f..f8b2041f 100644 --- a/extra/mesa/sources +++ b/extra/mesa/sources @@ -1,2 +1,2 @@ -https://github.com/mesa3d/mesa/archive/mesa-20.3.4.tar.gz +https://github.com/mesa3d/mesa/archive/mesa-21.0.1.tar.gz https://files.pythonhosted.org/packages/source/M/Mako/Mako-1.1.1.tar.gz mako diff --git a/extra/mesa/version b/extra/mesa/version index 971bebb1..8ffdbf95 100644 --- a/extra/mesa/version +++ b/extra/mesa/version @@ -1 +1 @@ -20.3.4 1 +21.0.1 1 |