projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
3a6a833
)
Try to avoid flockless and emulationless places.
Jarkko Hietaniemi [Wed, 8 Nov 2000 14:21:08 +0000 (14:21 +0000)]
p4raw-id: //depot/perl@7601
t/pragma/warn/pp_sys
patch
|
blob
|
blame
|
history
diff --git
a/t/pragma/warn/pp_sys
b/t/pragma/warn/pp_sys
index
2843c70
..
6ba616f
100644
(file)
--- a/
t/pragma/warn/pp_sys
+++ b/
t/pragma/warn/pp_sys
@@
-203,7
+203,9
@@
syswrite() on closed filehandle STDIN at - line 6.
# pp_sys.c [pp_flock]
use Config;
BEGIN {
- if ( $^O eq 'VMS' and ! $Config{d_flock}) {
+ if ( !$Config{d_flock} &&
+ !$Config{d_fcntl_can_lock} &&
+ !$Config{d_lockf} ) {
print <<EOM ;
SKIPPED
# flock not present