From: Richard Levitte Date: Thu, 27 May 2004 09:33:10 +0000 (+0000) Subject: Copy the FIPS files to the temporary openssl include directory. X-Git-Tag: OpenSSL_0_9_7e~90 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e9f7ebd674cf948a446ffceceee89294045b7083;p=openssl Copy the FIPS files to the temporary openssl include directory. --- diff --git a/makevms.com b/makevms.com index 443f3c15c5..f262e3708a 100755 --- a/makevms.com +++ b/makevms.com @@ -480,6 +480,33 @@ $! $ EXHEADER := ssl.h,ssl2.h,ssl3.h,ssl23.h,tls1.h,kssl.h $ COPY SYS$DISK:[.SSL]'EXHEADER' SYS$DISK:[.INCLUDE.OPENSSL] $! +$! Copy All The ".H" Files From The [.FIPS] Directories. +$! +$ FDIRS := ,SHA1,RAND,DES,AES,DSA,RSA +$ EXHEADER_ := fips.h +$ EXHEADER_SHA1 := +$ EXHEADER_RAND := fips_rand.h +$ EXHEADER_DES := +$ EXHEADER_AES := +$ EXHEADER_DSA := +$ EXHEADER_RSA := +$ +$ I = 0 +$ LOOP_FDIRS: +$ D = F$EDIT(F$ELEMENT(I, ",", FDIRS),"TRIM") +$ I = I + 1 +$ IF D .EQS. "," THEN GOTO LOOP_FDIRS_END +$ tmp = EXHEADER_'D' +$ IF tmp .EQS. "" THEN GOTO LOOP_FDIRS +$ IF D .EQS. "" +$ THEN +$ COPY [.CRYPTO]'tmp' SYS$DISK:[.INCLUDE.OPENSSL] !/LOG +$ ELSE +$ COPY [.CRYPTO.'D']'tmp' SYS$DISK:[.INCLUDE.OPENSSL] !/LOG +$ ENDIF +$ GOTO LOOP_FDIRS +$ LOOP_FDIRS_END: +$! $! Purge all doubles $! $ PURGE SYS$DISK:[.INCLUDE.OPENSSL]*.H