Update of /cvsroot/file-extattr/File-ExtAttr
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv30825
Modified Files:
Changes Makefile.PL
Log Message:
Explicitly note that OpenBSD isn't supported
Index: Changes
===================================================================
RCS file: /cvsroot/file-extattr/File-ExtAttr/Changes,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** Changes 27 Apr 2007 06:45:21 -0000 1.26
--- Changes 6 May 2007 08:35:06 -0000 1.27
***************
*** 1,4 ****
--- 1,9 ----
Revision history for Perl extension File::ExtAttr.
+ 1.04 2007-05-06
+
+ - (richdawe) OpenBSD does not support extended attributes --
+ fail the build on OpenBSD; documentation updates.
+
1.03 2007-04-27
Index: Makefile.PL
===================================================================
RCS file: /cvsroot/file-extattr/File-ExtAttr/Makefile.PL,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Makefile.PL 19 Aug 2006 18:34:42 -0000 1.6
--- Makefile.PL 6 May 2007 08:35:06 -0000 1.7
***************
*** 27,30 ****
--- 27,33 ----
}
+ # OpenBSD does not support extended attributes.
+ die 'OpenBSD does not support extended attributes' if ($^O eq 'openbsd');
+
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
|