mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
e77c13f8b7
So far, the MSBLOB and PVK writers could only handle EVP_PKEYs with legacy internal keys. Specially to be able to compile the loader_attic engine, we use the C macro OPENSSL_NO_PROVIDER_CODE to avoid building the provider specific things when we don't need them. The alternative is to suck half of crypto/evp/ into loader_attic, and that's just not feasible. Fixes #13503 Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/13661)
102 lines
3.1 KiB
Plaintext
102 lines
3.1 KiB
Plaintext
IF[{- !$disabled{"engine"} -}]
|
|
$PADLOCKASM=
|
|
IF[{- !$disabled{asm} -}]
|
|
$PADLOCKASM_x86=e_padlock-x86.s
|
|
$PADLOCKASM_x86_64=e_padlock-x86_64.s
|
|
|
|
# Now that we have defined all the arch specific variables, use the
|
|
# appropriate one, and define the appropriate macros
|
|
IF[$PADLOCKASM_{- $target{asm_arch} -}]
|
|
$PADLOCKASM=$PADLOCKASM_{- $target{asm_arch} -}
|
|
$PADLOCKDEF=PADLOCK_ASM
|
|
ENDIF
|
|
ENDIF
|
|
|
|
IF[{- $disabled{"dynamic-engine"} -}]
|
|
LIBS=../libcrypto
|
|
IF[{- !$disabled{padlockeng} -}]
|
|
SOURCE[../libcrypto]=e_padlock.c $PADLOCKASM
|
|
DEFINE[../libcrypto]=$PADLOCKDEF
|
|
ENDIF
|
|
IF[{- !$disabled{capieng} -}]
|
|
SOURCE[../libcrypto]=e_capi.c
|
|
ENDIF
|
|
IF[{- !$disabled{afalgeng} -}]
|
|
SOURCE[../libcrypto]=e_afalg.c
|
|
ENDIF
|
|
IF[{- !$disabled{"devcryptoeng"} -}]
|
|
SOURCE[../libcrypto]=e_devcrypto.c
|
|
ENDIF
|
|
ELSE
|
|
IF[{- !$disabled{padlockeng} -}]
|
|
MODULES{engine}=padlock
|
|
SOURCE[padlock]=e_padlock.c $PADLOCKASM
|
|
DEFINE[padlock]=$PADLOCKDEF
|
|
DEPEND[padlock]=../libcrypto
|
|
INCLUDE[padlock]=../include
|
|
IF[{- defined $target{shared_defflag} -}]
|
|
SOURCE[padlock]=padlock.ld
|
|
GENERATE[padlock.ld]=../util/engines.num
|
|
ENDIF
|
|
ENDIF
|
|
IF[{- !$disabled{capieng} -}]
|
|
MODULES{engine}=capi
|
|
SOURCE[capi]=e_capi.c
|
|
DEPEND[capi]=../libcrypto
|
|
INCLUDE[capi]=../include
|
|
IF[{- defined $target{shared_defflag} -}]
|
|
SOURCE[capi]=capi.ld
|
|
GENERATE[capi.ld]=../util/engines.num
|
|
ENDIF
|
|
ENDIF
|
|
IF[{- !$disabled{afalgeng} -}]
|
|
MODULES{engine}=afalg
|
|
SOURCE[afalg]=e_afalg.c
|
|
DEPEND[afalg]=../libcrypto
|
|
INCLUDE[afalg]= ../include
|
|
IF[{- defined $target{shared_defflag} -}]
|
|
SOURCE[afalg]=afalg.ld
|
|
GENERATE[afalg.ld]=../util/engines.num
|
|
ENDIF
|
|
ENDIF
|
|
IF[{- !$disabled{"devcryptoeng"} -}]
|
|
MODULES{engine}=devcrypto
|
|
SOURCE[devcrypto]=e_devcrypto.c
|
|
DEPEND[devcrypto]=../libcrypto
|
|
INCLUDE[devcrypto]=../include
|
|
IF[{- defined $target{shared_defflag} -}]
|
|
SOURCE[devcrypto]=devcrypto.ld
|
|
GENERATE[devcrypto.ld]=../util/engines.num
|
|
ENDIF
|
|
ENDIF
|
|
|
|
MODULES{noinst,engine}=ossltest dasync loader_attic
|
|
SOURCE[dasync]=e_dasync.c
|
|
DEPEND[dasync]=../libcrypto
|
|
INCLUDE[dasync]=../include
|
|
IF[{- defined $target{shared_defflag} -}]
|
|
SOURCE[dasync]=dasync.ld
|
|
GENERATE[dasync.ld]=../util/engines.num
|
|
ENDIF
|
|
|
|
SOURCE[ossltest]=e_ossltest.c
|
|
DEPEND[ossltest]=../libcrypto
|
|
INCLUDE[ossltest]=../include
|
|
IF[{- defined $target{shared_defflag} -}]
|
|
SOURCE[ossltest]=ossltest.ld
|
|
GENERATE[ossltest.ld]=../util/engines.num
|
|
ENDIF
|
|
|
|
SOURCE[loader_attic]=e_loader_attic.c ../crypto/pem/pvkfmt.c
|
|
DEFINE[loader_attic]=OPENSSL_NO_PROVIDER_CODE
|
|
DEPEND[loader_attic]=../libcrypto
|
|
INCLUDE[loader_attic]=../include
|
|
IF[{- defined $target{shared_defflag} -}]
|
|
SOURCE[loader_attic]=loader_attic.ld
|
|
GENERATE[loader_attic.ld]=../util/engines.num
|
|
ENDIF
|
|
ENDIF
|
|
GENERATE[e_padlock-x86.s]=asm/e_padlock-x86.pl
|
|
GENERATE[e_padlock-x86_64.s]=asm/e_padlock-x86_64.pl
|
|
ENDIF
|