d5a36a868b
- Fix build with glibc 2.17 (clisp-glibc-fix.patch) * rebase patches to -p1 as stated in the patching guidelines * update to libsegsev-2.10 OBS-URL: https://build.opensuse.org/request/show/143477 OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/clisp?expand=0&rev=36
25 lines
879 B
Diff
25 lines
879 B
Diff
---
|
|
modules/bindings/glibc/linux.lisp | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
--- a/modules/bindings/glibc/linux.lisp
|
|
+++ b/modules/bindings/glibc/linux.lisp
|
|
@@ -86,7 +86,7 @@
|
|
|
|
(def-c-type __key_t) ; int
|
|
|
|
-(c-lines "#include <bits/ipctypes.h>~%")
|
|
+(c-lines "#include <sys/ipc.h>~%")
|
|
(def-c-type __ipc_pid_t) ; ushort
|
|
|
|
; --------------------------- <sys/types.h> -----------------------------------
|
|
@@ -293,6 +293,8 @@
|
|
;; for robust mutexes
|
|
(def-c-const EOWNERDEAD (:documentation "Owner died")) ; 130
|
|
(def-c-const ENOTRECOVERABLE (:documentation "State not recoverable")) ; 131
|
|
+(def-c-const ERFKILL (:documentation "Operation not possible due to RF-kill")) ; 132
|
|
+(def-c-const EHWPOISON (:documentation "Memory page has hardware error")) ; 133
|
|
|
|
; -------------------------- <bits/errno.h> -----------------------------------
|
|
|