summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorStelios Tsampas2019-12-15 14:01:34 +0200
committerStelios Tsampas2019-12-15 14:01:34 +0200
commit19c34bc8ec2341aebbd9b9cbcc906cd8ee9f3c31 (patch)
tree00bad8146289754c7e29b0f3e45829e26fd7e0b8
parente2fc54e0c24a50beef281f4edc11050387a6983a (diff)
downloadaur-19c34bc8ec2341aebbd9b9cbcc906cd8ee9f3c31.tar.gz
version 0.40.1. Filter fstack-protector flags
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD5
2 files changed, 6 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index eb04e3cce0ec..7840c0243099 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = d9vk-mingw
pkgdesc = A d3d9 to vk layer based off DXVK's codebase, mingw version
- pkgver = 0.40
+ pkgver = 0.40.1
pkgrel = 1
url = https://github.com/Joshua-Ashton/d9vk
arch = x86_64
@@ -17,7 +17,7 @@ pkgbase = d9vk-mingw
depends = bash
provides = d9vk
conflicts = d9vk
- source = git+https://github.com/Joshua-Ashton/d9vk.git#tag=0.40
+ source = git+https://github.com/Joshua-Ashton/d9vk.git#tag=0.40.1
source = setup_d9vk
source = dxvk-async.patch
source = dxvk-mangohud.patch
diff --git a/PKGBUILD b/PKGBUILD
index 41de98daede5..2af870d28965 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: loathingkernel <loathingkernel @at gmail .dot com>
pkgname=d9vk-mingw
-_tag=0.40
+_tag=0.40.1
pkgver=${_tag//-/_}
pkgrel=1
pkgdesc="A d3d9 to vk layer based off DXVK's codebase, mingw version"
@@ -47,6 +47,9 @@ prepare() {
# Adjust optimization level in meson arguments. This is ignored
# anyways because meson sets its own optimization level.
CFLAGS="${CFLAGS/ -O*([0-3])/}"
+ # Filter fstack-protector flag for MingW.
+ # https://github.com/Joshua-Ashton/d9vk/issues/476
+ CFLAGS="${CFLAGS/ -fstack-protector*/}"
# Doesn't compile with these flags in MingW so remove them.
# They are also filtered in Wine PKGBUILDs so remove them
# for winelib versions too.