diff options
author | Andy Dougherty <doughera@lafayette.edu> | 1998-05-28 09:27:25 -0400 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1998-05-28 17:59:18 +0000 |
commit | bd89102fe7784367e3eeddc7cefae29defae903a (patch) | |
tree | 79cc385dded6a269bf4f938ac1be5a70c7e644f4 /vms | |
parent | 1d26b16b4a5b44b9f5893c8b4c8ce90d163883e5 (diff) | |
download | perl-bd89102fe7784367e3eeddc7cefae29defae903a.tar.gz |
[PATCH 5.004_65] Config_65-02-03.diff: SunOS and Solaris hints
Date: Thu, 28 May 1998 13:27:25 -0400 (EDT)
Subject: [PATCH 5.004_65] Config_65-03-04.diff: semctl probing
Date: Thu, 28 May 1998 13:28:21 -0400 (EDT)
p4raw-id: //depot/perl@1047
Diffstat (limited to 'vms')
-rw-r--r-- | vms/config.vms | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/vms/config.vms b/vms/config.vms index bfc5bb2060..839c7ee00f 100644 --- a/vms/config.vms +++ b/vms/config.vms @@ -691,6 +691,28 @@ */ #define HAS_VFORK /**/ +/* HAS_UNION_SEMUN: + * This symbol, if defined, indicates that the union semun is + * defined by including <sys/sem.h>. If not, the user code + * probably needs to define it as: + * union semun { + * int val; + * struct semid_ds *buf; + * unsigned short *array; + * } + */ +/* USE_SEMCTL_SEMUN: + * This symbol, if defined, indicates that union semun is + * used for semctl IPC_STAT. + */ +/* USE_SEMCTL_SEMID_DS: + * This symbol, if defined, indicates that struct semid_ds * is + * used for semctl IPC_STAT. + */ +#undef HAS_UNION_SEMUN /**/ +#undef USE_SEMCTL_SEMUN /**/ +#undef USE_SEMCTL_SEMID_DS /**/ + /* Signal_t: * This symbol's value is either "void" or "int", corresponding to the * appropriate return type of a signal handler. Thus, you can declare |