0
0
mirror of https://github.com/openwrt/packages.git synced 2025-07-04 21:13:09 +00:00
Files
packages/libs/glib2/patches/003-valgrind.h-mips16-fix.patch
Yegor Yefremov ffefbb2645 libs/glib2: update to 2.80.3
Explicitly disable gobject introspection option.

Set runtime_dir to /var/run as current glib2 version sets this option
to /run by default.

Add a patch removing the Python packaging module dependency.

Refresh patches.

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
2024-07-02 04:57:41 -07:00

12 lines
440 B
Diff

--- a/glib/valgrind.h
+++ b/glib/valgrind.h
@@ -159,7 +159,7 @@
# define PLAT_s390x_linux 1
#elif defined(__linux__) && defined(__mips__) && (__mips==64)
# define PLAT_mips64_linux 1
-#elif defined(__linux__) && defined(__mips__) && (__mips!=64)
+#elif defined(__linux__) && defined(__mips__) && (__mips!=64) && !defined(__mips16)
# define PLAT_mips32_linux 1
#elif defined(__sun) && defined(__i386__)
# define PLAT_x86_solaris 1