summaryrefslogtreecommitdiff
path: root/ext/Errno
diff options
context:
space:
mode:
authorPaul Green <Paul.Green@stratus.com>2002-01-07 11:59:38 -0500
committerAbhijit Menon-Sen <ams@wiw.org>2002-01-07 21:46:11 +0000
commit196918b01b6d6cccc18ae2da6d13eebfe1effc0c (patch)
tree76fdb3e6bf48586947e4dd67f2cb9c2716e2cac7 /ext/Errno
parentee45e09c1a4b5fcad89edc643e8528dd68030a37 (diff)
downloadperl-196918b01b6d6cccc18ae2da6d13eebfe1effc0c.tar.gz
Last patch needed to get Perl5.7 to build natively on VOS
Message-Id: <95AE3CDB3543D511883A0020485B38B90235349B@exna3.stratus.com> p4raw-id: //depot/perl@14124
Diffstat (limited to 'ext/Errno')
-rw-r--r--ext/Errno/Errno_pm.PL3
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL
index eafbd67ec8..201a8f3a6b 100644
--- a/ext/Errno/Errno_pm.PL
+++ b/ext/Errno/Errno_pm.PL
@@ -123,6 +123,9 @@ sub get_files {
# hidden in a special place
$file{'/boot/develop/headers/posix/errno.h'} = 1;
+ } elsif ($^O eq 'vos') {
+ # avoid problem where cpp returns non-POSIX pathnames
+ $file{'/system/include_library/errno.h'} = 1;
} else {
open(CPPI,"> errno.c") or
die "Cannot open errno.c";