Tweak the egg/depedencies
This commit is contained in:
parent
6ac7a6b535
commit
c799d7a37c
|
@ -1,9 +1,8 @@
|
||||||
;; -*- Scheme -*-
|
;; -*- Scheme -*-
|
||||||
((synopsis "Access to extended attributes")
|
((synopsis "Access to extended attributes")
|
||||||
(author "Jaidyn Ann")
|
(author "Jaidyn Ann")
|
||||||
(category net)
|
(category io)
|
||||||
(license "GPLv3")
|
(license "GPLv3")
|
||||||
|
(dependencies srfi-1 srfi-12)
|
||||||
|
|
||||||
(components (extension xattr)))
|
(components (extension xattr)))
|
||||||
;; (csc-options "-O3" "-d1" "-X" "bind" "-s" "-k" "-emit-link-file" "xattr.link" "-o" "xattr_ext.o"))
|
|
||||||
;; (c-object xattr_ext)))
|
|
||||||
|
|
|
@ -18,7 +18,10 @@
|
||||||
(module xattr
|
(module xattr
|
||||||
(get-xattr set-xattr remove-xattr list-xattr)
|
(get-xattr set-xattr remove-xattr list-xattr)
|
||||||
|
|
||||||
(import (chicken base) (chicken memory) srfi-1 scheme (chicken foreign) srfi-12)
|
(import scheme
|
||||||
|
(chicken base) (chicken foreign) (chicken memory)
|
||||||
|
srfi-1 srfi-12)
|
||||||
|
|
||||||
|
|
||||||
(foreign-declare "#include \"xattr_ext.c\"")
|
(foreign-declare "#include \"xattr_ext.c\"")
|
||||||
|
|
||||||
|
|
Ŝarĝante…
Reference in New Issue