forked from pool/glibc
- Use python3-pexpect instead of python-pexpect - riscv-kernel-sigaction.patch: fix struct kernel_sigaction to match the kernel version (BZ #23069) - glibc-2.3.90-langpackdir.diff: No longer search in /usr/share/locale-bundle OBS-URL: https://build.opensuse.org/request/show/617700 OBS-URL: https://build.opensuse.org/package/show/Base:System/glibc?expand=0&rev=507
18 lines
543 B
Diff
18 lines
543 B
Diff
2018-04-28 Aurelien Jarno <aurelien@aurel32.net>
|
|
|
|
[BZ #23069]
|
|
* sysdeps/unix/sysv/linux/riscv/kernel_sigaction.h: New file.
|
|
|
|
Index: glibc-2.27/sysdeps/unix/sysv/linux/riscv/kernel_sigaction.h
|
|
===================================================================
|
|
--- /dev/null
|
|
+++ glibc-2.27/sysdeps/unix/sysv/linux/riscv/kernel_sigaction.h
|
|
@@ -0,0 +1,7 @@
|
|
+/* This is the sigaction structure from the RISC-V Linux 4.15 kernel. */
|
|
+
|
|
+struct kernel_sigaction {
|
|
+ __sighandler_t k_sa_handler;
|
|
+ unsigned long sa_flags;
|
|
+ sigset_t sa_mask;
|
|
+};
|