Revision 262ff12347f30548080ad904b7d15928221864aa authored by Matt Caswell on 27 April 2020, 15:14:16 UTC, committed by Matt Caswell on 04 May 2020, 08:30:55 UTC
This makes EVP_PKEY_cmp work for provider side ECX keys.

Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/11635)
1 parent 48b4b10
Raw File
50-djgpp.conf
# We can't make any commitment to support the DJGPP platform,
# and rely entirely on the OpenSSL community to help is fine
# tune and test.

my %targets = (
    "DJGPP" => {
        CC               => "gcc",
        CFLAGS           => "-fomit-frame-pointer -O2 -Wall",
        cflags           => "-I/dev/env/WATT_ROOT/inc -DTERMIOS -DL_ENDIAN",
        sys_id           => "MSDOS",
        lflags           => add("-L/dev/env/WATT_ROOT/lib"),
        ex_libs          => add("-lwatt"),
        bn_ops           => "BN_LLONG",
        asm_arch         => 'x86',
        perlasm_scheme   => "a.out",
    },
);
back to top