[DO-973] harfbuzz package (!10)

Co-authored-by: aleksandr.vodyanov <aleksandr.vodyanov@avroid.tech>
Reviewed-on: https://git.avroid.tech/Conan/conan_build/pulls/10
This commit is contained in:
Aleksandr Vodyanov
2024-12-26 12:02:17 +03:00
parent 39afe6a1dd
commit c807f2514e
126 changed files with 6604 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
This will open all files in binary mode.
files may contain binary data.
This fixes e.g. autoconf, of whose frozen file, contains all characters from 0x00 to 0xff.
--- src/path.c
+++ src/path.c
@@ -110,7 +110,7 @@
static FILE *
m4_fopen (const char *file)
{
- FILE *fp = fopen (file, "re");
+ FILE *fp = fopen (file, "reb");
if (fp)
{
struct stat st;