diff options
author | Richard Levitte <levitte@openssl.org> | 2016-04-01 12:36:51 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-04-01 16:23:35 +0200 |
commit | 368058d0a79d2e3b853746b09ca86679a86ac233 (patch) | |
tree | 7f4b2dd3b31f56b99c113d5a94fff46d311c8ab6 /NOTES.VMS | |
parent | Make the use of perl more consistent (diff) | |
download | openssl-368058d0a79d2e3b853746b09ca86679a86ac233.tar.xz openssl-368058d0a79d2e3b853746b09ca86679a86ac233.zip |
Force argv to be an array of long pointers on VMS
Reverts commit 087ca80ad83071dde0bb6bc1c28c743caa00eaf8
Instead of battling the odd format of argv given to main() in default
P64 mode, tell the compiler to make it an array of 64-bit pointers
when compiling in P64 mode.
A note is added in NOTES.VMS regarding minimum DEC C version.
Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'NOTES.VMS')
-rw-r--r-- | NOTES.VMS | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -18,8 +18,9 @@ An ANSI C compiled is needed among other things. This means that VAX C is not and will not be supported. - We have only tested with DEC C (a.k.a HP VMS C / VSI C), compiling - with a different ANSI C compiler may require some work. + We have only tested with DEC C (a.k.a HP VMS C / VSI C) and require + version 7.1 or later. Compiling with a different ANSI C compiler may + require some work. Please avoid using C RTL feature logical names DECC$* when building and testing OpenSSL. Most of all, they can be disruptive when |