df867d8099
around boo#1228342 and enable build with GCC 14 on 32bit architectures. I plan to not to close the bug and keep an eye on the package and remove the flag when it hopefully becomes unnecessary in the future. If the request is OK, please forward it to Factory too so that we can switch the default compiler. Thanks! OBS-URL: https://build.opensuse.org/package/show/Publishing:TeXLive/texlive?expand=0&rev=478
42 lines
1.4 KiB
Plaintext
42 lines
1.4 KiB
Plaintext
---
|
|
texk/kpathsea/tex-file.c | 14 +++++++++++++-
|
|
1 file changed, 13 insertions(+), 1 deletion(-)
|
|
|
|
--- texk/kpathsea/tex-file.c
|
|
+++ texk/kpathsea/tex-file.c 2024-03-22 10:05:55.034645098 +0000
|
|
@@ -21,7 +21,9 @@
|
|
|
|
#include <kpathsea/c-fopen.h>
|
|
#include <kpathsea/c-pathch.h>
|
|
+#include <errno.h>
|
|
#include <stdarg.h>
|
|
+#include <unistd.h>
|
|
#include <kpathsea/cnf.h>
|
|
#include <kpathsea/absolute.h>
|
|
#include <kpathsea/concatn.h>
|
|
@@ -1316,13 +1318,23 @@ kpathsea_name_ok (kpathsea kpse, const_s
|
|
TEXMFSYSVAR. */
|
|
if (extended) {
|
|
const_string texmfvar = kpathsea_var_value (kpse, "TEXMFVAR");
|
|
+ string cache = kpathsea_var_value (kpse, "VARTEXFONTS");
|
|
+ int fa = access(cache, W_OK);
|
|
+ if (fa != 0) {
|
|
+ string home = getenv ("HOME");
|
|
+ cache = concat3 (home, "/", ".cache/texmf/fonts");
|
|
+ }
|
|
if (!abs_fname_ok (expanded_fname, texmfvar)) {
|
|
const_string texmfsysvar
|
|
= kpathsea_var_value (kpse, "TEXMFSYSVAR");
|
|
if (!abs_fname_ok (expanded_fname, texmfsysvar)) {
|
|
- goto not_ok; /* nothing left to check. */
|
|
+ if (!abs_fname_ok (expanded_fname, cache)) {
|
|
+ goto not_ok; /* nothing left to check. */
|
|
+ }
|
|
}
|
|
}
|
|
+ if (fa != 0)
|
|
+ free (cache);
|
|
} else {
|
|
goto not_ok; /* not extended */
|
|
}
|