From: Richard D. <ric...@us...> - 2007-05-06 08:35:09
|
Update of /cvsroot/file-extattr/File-ExtAttr/lib/File In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv30825/lib/File Modified Files: ExtAttr.pm Log Message: Explicitly note that OpenBSD isn't supported Index: ExtAttr.pm =================================================================== RCS file: /cvsroot/file-extattr/File-ExtAttr/lib/File/ExtAttr.pm,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** ExtAttr.pm 27 Apr 2007 06:11:37 -0000 1.21 --- ExtAttr.pm 6 May 2007 08:35:07 -0000 1.22 *************** *** 59,63 **** Extended attributes may not be supported by your operating system. This module is aimed at Linux, Unix or Unix-like operating systems ! (e.g.: Mac OS X, FreeBSD, NetBSD, OpenBSD). Extended attributes may also not be supported by your filesystem --- 59,63 ---- Extended attributes may not be supported by your operating system. This module is aimed at Linux, Unix or Unix-like operating systems ! (e.g.: Mac OS X, FreeBSD, NetBSD, Solaris). Extended attributes may also not be supported by your filesystem *************** *** 67,70 **** --- 67,94 ---- mount -o user_xattr /dev/hda1 /some/path + =head2 Supported OSes + + =over 4 + + =item Linux + + =item Mac OS X + + =item FreeBSD 5.0 and later + + =item NetBSD 3.0 and later + + =item Solaris 10 and later + + =back + + =head2 Unsupported OSes + + =over 4 + + =item OpenBSD + + =back + =head2 Namespaces *************** *** 87,91 **** e.g.: C<os2> on JFS. File::Extattr will be able to access any of these. ! =item FreeBSD, NetBSD, OpenBSD *BSD have two namespaces: C<user> and C<system>. --- 111,115 ---- e.g.: C<os2> on JFS. File::Extattr will be able to access any of these. ! =item FreeBSD, NetBSD *BSD have two namespaces: C<user> and C<system>. *************** *** 347,354 **** =item OpenBSD ! OpenBSD > 3.8 supports extended attributes. L<http://www.openbsd.org/cgi-bin/man.cgi?query=extattr_get_file&apropos=0&sektion=0&manpath=OpenBSD+Current&arch=i386&format=html> =item FreeBSD --- 371,385 ---- =item OpenBSD ! OpenBSD 3.7 supported extended attributes, although support was never ! built into the default GENERIC kernel. Its support was documented ! in the C<extattr> man page: L<http://www.openbsd.org/cgi-bin/man.cgi?query=extattr_get_file&apropos=0&sektion=0&manpath=OpenBSD+Current&arch=i386&format=html> + Support was removed in OpenBSD 3.8 -- see the CVS history + for the include file C<sys/extattr.h>. + + L<http://www.openbsd.org/cgi-bin/cvsweb/src/sys/sys/Attic/extattr.h> + =item FreeBSD |