diff options
author | Andy Dougherty <doughera@lafayette.edu> | 2000-11-03 10:32:14 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-04 00:20:02 +0000 |
commit | 9d9004a9b2b7cfeace32230c040f124d0607259a (patch) | |
tree | 0cf651529d27bf0a78abd5481bed14f31785ca39 /vos | |
parent | a318903f974eb7986b0c4d33f6d08004a0b9b551 (diff) | |
download | perl-9d9004a9b2b7cfeace32230c040f124d0607259a.tar.gz |
Add FCNTL_CAN_LOCK.
Subject: Re: [ID 20001030.011] Not OK: perl v5.7.0 +DEVEL7481 on VMS_AXP V7.1 (UNINSTALLED)
Message-ID: <Pine.SOL.4.10.10011031528090.29-100000@maxwell.phys.lafayette.edu>
Subject: Re: [ID 20001030.011] Not OK: perl v5.7.0 +DEVEL7481 on VMS_AXP V7.1 (UNINSTALLED)
From: Andy Dougherty <doughera@lafayette.edu>
In-Reply-To: <4.3.1.0.20001031222203.00b24b20@pop5.banet.net>
Message-ID: <Pine.SOL.4.10.10011031532170.29-100000@maxwell.phys.lafayette.edu>
p4raw-id: //depot/perl@7536
Diffstat (limited to 'vos')
-rw-r--r-- | vos/config.alpha.def | 1 | ||||
-rw-r--r-- | vos/config.alpha.h | 7 | ||||
-rw-r--r-- | vos/config.ga.def | 1 | ||||
-rw-r--r-- | vos/config.ga.h | 7 |
4 files changed, 16 insertions, 0 deletions
diff --git a/vos/config.alpha.def b/vos/config.alpha.def index 84e1e0e108..c14b9ce3ea 100644 --- a/vos/config.alpha.def +++ b/vos/config.alpha.def @@ -58,6 +58,7 @@ $d_eofnblk='define' $d_fchmod='define' $d_fchown='undef' $d_fcntl='define' +$d_fcntl_can_lock='define' $d_fd_set='undef' $d_fgetpos='define' $d_flexfnam='define' diff --git a/vos/config.alpha.h b/vos/config.alpha.h index 30463bef9e..0b264db3f2 100644 --- a/vos/config.alpha.h +++ b/vos/config.alpha.h @@ -165,6 +165,13 @@ */ #define HAS_FCNTL /**/ +/* FCNTL_CAN_LOCK: + * This symbol, if defined, indicates that fcntl() can be used + * for file locking. Normally on Unix systems this is defined. + * It may be undefined on VMS. + */ +#define FCNTL_CAN_LOCK /**/ + /* HAS_FGETPOS: * This symbol, if defined, indicates that the fgetpos routine is * available to get the file position indicator, similar to ftell(). diff --git a/vos/config.ga.def b/vos/config.ga.def index c6ab96b1f6..f88060fd2a 100644 --- a/vos/config.ga.def +++ b/vos/config.ga.def @@ -58,6 +58,7 @@ $d_eofnblk='define' $d_fchmod='define' $d_fchown='undef' $d_fcntl='define' +$d_fcntl_can_lock='define' $d_fd_set='undef' $d_fgetpos='define' $d_flexfnam='define' diff --git a/vos/config.ga.h b/vos/config.ga.h index ae5cf93129..d09b89b5fd 100644 --- a/vos/config.ga.h +++ b/vos/config.ga.h @@ -165,6 +165,13 @@ */ #define HAS_FCNTL /**/ +/* FCNTL_CAN_LOCK: + * This symbol, if defined, indicates that fcntl() can be used + * for file locking. Normally on Unix systems this is defined. + * It may be undefined on VMS. + */ +#define FCNTL_CAN_LOCK /**/ + /* HAS_FGETPOS: * This symbol, if defined, indicates that the fgetpos routine is * available to get the file position indicator, similar to ftell(). |