John Trostel wrote:
No. In the 2.2.0 release, the configuration checks things differently. I have
asked Sean to send me the relevant configuration info to check.
On 16-May-2001 Klaus Strebel,ITS,204 wrote:
Sean Elble wrote:
Hello (again!),
I downloaded the latest Samba and XFS CVS versions
yesterday, and tried to compile ACL support,
just can't get the box i first tried it (some weeks ago, samba-2.2.0 was
not released then ;-) ). Have a look to the configure script of samba.
They are checking for IRIX platform ACLs only if on irix, because
xfs-acls are irix acls, you have to convince configure for this test,
that it is on irix platform. This should bild samba with xfs-acl
support, but i couldn't test it by now, no spare time (sigh).
If you don't find how to cheat it, let me know, i'll try to find it
tomorrow.
ok, just updated samba-2.2.0 from cvs and had a look to the
configure-script, search for
;;
*irix*)
echo "$ac_t""Using IRIX ACLs" 1>&6
cat >> confdefs.h <<\EOF
#define HAVE_IRIX_ACLS 1
EOF
and change it to
;;
*irix*)
*linux*)
echo "$ac_t""Using IRIX ACLs" 1>&6
cat >> confdefs.h <<\EOF
#define HAVE_IRIX_ACLS 1
EOF
now it should know which acl.h and functions to use.
Cheers
Klaus
|