Sorry to bother you again, but I still have some remarks.
I installed the acl-devel-1.0.1-0.i386.rpm which included the acl library
(/usr/lib/libacl.a)
When compiling I received errors (ACL_TYPE_ACCESS undeclared) that I solved
doing this:
* changes proposed by Juergen Hash
* added "#define HAVE_SYS_ACL_H 1" to config.h
* changed the following in permissions.c and ls.c
I replaced
#if HAVE_SYS_ACL_H
# include <sys/acl.h>
with:
#if HAVE_SYS_ACL_H
# include <acl/acl.h>
Why?
because I only have /usr/include/acl/acl.h (file created by acl-devel.rpm)
==> make
==> make install
ok
But now I'm wondering how I can find out whether I have fileutils which are
ACL enabled?
from acl.bestbits.at: ls -l' displays a `+' character after the file mode
string for files with an ACL.
I don't see this when I do 'ls -l aclfile'.
Thanks again for your time,
Werner Maes
|