aboutsummaryrefslogtreecommitdiff
path: root/utils/fontconfig/patches
diff options
context:
space:
mode:
authorkrant <aleksey.vasilenko@gmail.com>2024-04-12 07:26:06 +0300
committerRosen Penev <rosenp@gmail.com>2024-04-13 14:05:04 -0700
commit98aa6b8fde6a01c0a1338e7bfdf66b9fc3365a2e (patch)
tree3a8851ea3c8f0afb541435b0e2b8025fe78c6d41 /utils/fontconfig/patches
parent2c94c9133d2b75900c90195eed2435763811d1a8 (diff)
fontconfig: update to 2.15.0
- Use up-to-date project URLs - Remove obsoleted patch Signed-off-by: krant <aleksey.vasilenko@gmail.com>
Diffstat (limited to 'utils/fontconfig/patches')
-rw-r--r--utils/fontconfig/patches/001-revert-upstream-meson-commit.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/utils/fontconfig/patches/001-revert-upstream-meson-commit.patch b/utils/fontconfig/patches/001-revert-upstream-meson-commit.patch
deleted file mode 100644
index bcd7ce8c8..000000000
--- a/utils/fontconfig/patches/001-revert-upstream-meson-commit.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-Revert partially the upstream commit ae9ac2a1
-
- Subject: [PATCH] meson: fix cross-compilation issues with gperf header file preprocessing
-
- Pass c_args to the compiler when preprocessing the gperf header file,
- they might contain important bits without which compilation/preprocessing
- might fail (e.g. with clang on Android). cc.cmd_array() does not include
- the c_args and we can't easily look them up from the meson.build file, so
- we have to retrieve from the introspection info.
-
- This is basically the Meson equivalent to commit 57103773.
-
-Revert the host_cargs related part of the patch
-
-
---- a/src/cutout.py
-+++ b/src/cutout.py
-@@ -24,7 +24,7 @@ if __name__== '__main__':
- break
-
- cpp = args[1]
-- ret = subprocess.run(cpp + host_cargs + [args[0].input], stdout=subprocess.PIPE, check=True)
-+ ret = subprocess.run(cpp + [args[0].input], stdout=subprocess.PIPE, check=True)
-
- stdout = ret.stdout.decode('utf8')
-