Keep file references in the VMS build files in the same order as they

are in the Unix Makefiles
This commit is contained in:
Richard Levitte 2011-03-19 10:44:41 +00:00
parent acb25c2327
commit 2f91cb2c5e
2 changed files with 4 additions and 3 deletions

View File

@ -228,7 +228,7 @@ $ LIB_CAST = "c_skey,c_ecb,c_enc,c_cfb64,c_ofb64"
$ LIB_CAMELLIA = "camellia,cmll_misc,cmll_ecb,cmll_cbc,cmll_ofb,"+ - $ LIB_CAMELLIA = "camellia,cmll_misc,cmll_ecb,cmll_cbc,cmll_ofb,"+ -
"cmll_cfb,cmll_ctr" "cmll_cfb,cmll_ctr"
$ LIB_SEED = "seed,seed_ecb,seed_cbc,seed_cfb,seed_ofb" $ LIB_SEED = "seed,seed_ecb,seed_cbc,seed_cfb,seed_ofb"
$ LIB_MODES = "cbc128,ctr128,cfb128,ofb128,cts128" $ LIB_MODES = "cbc128,ctr128,cts128,cfb128,ofb128"
$ LIB_BN_ASM = "[.asm]vms.mar,vms-helper" $ LIB_BN_ASM = "[.asm]vms.mar,vms-helper"
$ IF F$TRNLNM("OPENSSL_NO_ASM") .OR. ARCH .NES. "VAX" THEN - $ IF F$TRNLNM("OPENSSL_NO_ASM") .OR. ARCH .NES. "VAX" THEN -
LIB_BN_ASM = "bn_asm" LIB_BN_ASM = "bn_asm"

View File

@ -740,7 +740,7 @@ $ EXHEADER_LHASH := lhash.h
$ EXHEADER_RAND := rand.h $ EXHEADER_RAND := rand.h
$ EXHEADER_ERR := err.h $ EXHEADER_ERR := err.h
$ EXHEADER_EVP := evp.h $ EXHEADER_EVP := evp.h
$ EXHEADER_ASN1 := asn1.h, asn1t.h, asn1_mac.h $ EXHEADER_ASN1 := asn1.h, asn1_mac.h, asn1t.h
$ EXHEADER_PEM := pem.h, pem2.h $ EXHEADER_PEM := pem.h, pem2.h
$ EXHEADER_X509 := x509.h, x509_vfy.h $ EXHEADER_X509 := x509.h, x509_vfy.h
$ EXHEADER_X509V3 := x509v3.h $ EXHEADER_X509V3 := x509v3.h
@ -772,7 +772,8 @@ $ loop_sdirs_end:
$! $!
$! Copy All The ".H" Files From The [.SSL] Directory. $! Copy All The ".H" Files From The [.SSL] Directory.
$! $!
$ EXHEADER := dtls1.h, kssl.h, ssl.h, ssl2.h, ssl23.h, ssl3.h, tls1.h $! (keep these in the same order as ssl/Makefile)
$ EXHEADER := ssl.h, ssl2.h, ssl3.h, ssl23.h, tls1.h, dtls1.h, kssl.h
$ copy sys$disk:[.ssl]'exheader' sys$disk:[.include.openssl] $ copy sys$disk:[.ssl]'exheader' sys$disk:[.include.openssl]
$! $!
$! Purge the [.include.openssl] header files. $! Purge the [.include.openssl] header files.