Hi,

+       have_export_keying_material="yes"
> +       AC_CHECK_FUNCS(
> +               [SSL_export_keying_material],
> +               ,
> +               [have_export_keying_material="no"; break]
> +       )
>

Just wondering why not AC_CHECK_FUNC? In this case we could get rid of
"break".

_FUNCS also defines HAVE_function macro, which we don't use in this
particular case.

Noticed that we have similar code above:

    have_crypto_aead_modes="yes"
    AC_CHECK_FUNCS(
        [EVP_aes_256_gcm],
        ,
        [have_crypto_aead_modes="no"; break]
    )

so maybe that's why.

-Lev
_______________________________________________
Openvpn-devel mailing list
Openvpn-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openvpn-devel

Reply via email to