
where necessary to the main trunk (0.9.8-dev). This does not include rearrangements and work I've been doing, that'll come in the next bunch of commits to this branch. This set of changes can't be expected to work on any VMS system, there are changes in here that are very specific to Compaq's building system. This set of changes will be surrounded by the tags BEFORE_COMPAQ_PATCH and AFTER_COMPAQ_PATCH.
21 lines
470 B
Plaintext
21 lines
470 B
Plaintext
$! To compile mttest on VMS.
|
|
$!
|
|
$! WARNING: only tested with DEC C so far.
|
|
$!
|
|
$!
|
|
$!
|
|
$! Define USER_CCFLAGS
|
|
$!
|
|
$ @[--]vms_build_info.com
|
|
$ WRITE SYS$OUTPUT " Using USER_CCFLAGS = ", USER_CCFLAGS
|
|
$
|
|
$ arch := vax
|
|
$ if f$getsyi("CPU") .ge. 128 then arch := axp
|
|
$ define/user openssl [--.include.openssl]
|
|
$ cc/def=PTHREADS mttest.c
|
|
$ link /MAP/FULL/CROSS mttest, -
|
|
[--.'arch'.exe.ssl]libssl/lib, -
|
|
[--.'arch'.exe.crypto]libcrypto/lib, -
|
|
SYS$DISK:[--]SSL_IDENT.OPT/OPTION
|
|
|