syscalls: Adjust 'define-bits' to macro literal semantics of 2.2.
* guix/build/syscalls.scm (define-bits): Do not define NAMES... as top-level variables since that prevents literal matches in 2.2. Instead, determine constant values at expansion time.
This commit is contained in:
parent
239c22663a
commit
334c95306a
|
@ -1346,12 +1346,12 @@ given an integer, returns the list of names of the constants that are or'd."
|
||||||
(begin
|
(begin
|
||||||
(define-syntax constructor
|
(define-syntax constructor
|
||||||
(syntax-rules (names ...)
|
(syntax-rules (names ...)
|
||||||
|
((_) 0)
|
||||||
((_ names) values) ...
|
((_ names) values) ...
|
||||||
((_ several (... ...))
|
((_ first rest (... ...))
|
||||||
(logior (constructor several) (... ...)))))
|
(logior (constructor first) rest (... ...)))))
|
||||||
(define (bits->symbols bits)
|
(define (bits->symbols bits)
|
||||||
(bits->symbols-body bits (names ...) (values ...)))
|
(bits->symbols-body bits (names ...) (values ...)))))))
|
||||||
(define names values) ...))))
|
|
||||||
|
|
||||||
;; 'local-flags' bits from <bits/termios.h>
|
;; 'local-flags' bits from <bits/termios.h>
|
||||||
(define-bits local-flags
|
(define-bits local-flags
|
||||||
|
|
Loading…
Reference in New Issue