summaryrefslogtreecommitdiffstats
path: root/crypto/libvms.com
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-05-13 11:37:32 +0000
committerUlf Möller <ulf@openssl.org>1999-05-13 11:37:32 +0000
commit7d7d2cbcb02206f3393681f2bce198e11e2e185b (patch)
tree93410fafc5aa977c748ea492994da3f581d11278 /crypto/libvms.com
parent8d111f4a476896a417069d16597ce3009f9bb992 (diff)
VMS support.
Submitted by: Richard Levitte <richard@levitte.org>
Diffstat (limited to 'crypto/libvms.com')
-rwxr-xr-xcrypto/libvms.com31
1 files changed, 0 insertions, 31 deletions
diff --git a/crypto/libvms.com b/crypto/libvms.com
deleted file mode 100755
index 44f90c65b0..0000000000
--- a/crypto/libvms.com
+++ /dev/null
@@ -1,31 +0,0 @@
-$!
-$! Compile crypto.c as several subset modules and insert in crypto-xxx.olb.
-$! If P1 is specifed, it specifies alternate list of subsets to compile.
-$!
-$ libname = "CRYPTO-AXP.OLB"
-$ subset_list = "LIB,ASN1,BN,BUFFER,CONF,DES,DH,DSA,ERROR,EVP,IDEA,LHASH,MD," + -
- "METH,OBJECTS,PEM,RAND,RC,RSA,SHA,STACK,TXT_DB,X509"
-$ if p1 .nes. "" then subset_list = p1
-$!
-$ if f$getsyi("CPU") .lt. 128 then libname = "CRYPTO-VAX.OLB"
-$ if f$search(libname) .eqs. "" then library/create/object/log 'libname'
-$!
-$ cc = "cc/include=[-.include]/prefix=all" + P2
-$!
-$ i = 0
-$ next_subset:
-$ subset = f$element(i,",",subset_list)
-$ if subset .eqs. "," then goto done
-$ i = i + 1
-$ create crypto_'subset'.subset
-#include "crypto.c"
-$ ofile = "sys$disk:[]crypto_" + subset + ".obj"
-$ on warning then goto next_subset
-$ write sys$output "Compiling ", ofile
-$ cc /object='ofile' crypto_'subset'.subset -
- /define=(CRYPTO_SUBSET,CRYPTO_'subset'_SUBSET)
-$ library/replace/log 'libname'/module=CRYPTO_'subset' 'ofile'
-$ goto next_subset
-$!
-$ done:
-$ exit