blob: 8c88c3eae41ac586d8e64e76ac7b7f31d9e25a6a [file] [log] [blame]
Patrick Williams3dbac6d2016-05-26 18:03:12 -05001FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
Patrick Williams26ece152015-09-22 21:59:41 -05002
3# General config settings.
Ed Tanous2ee96f52018-09-07 10:18:44 -07004EXTRA_OECONF_append_class-target = " shared no-hw no-err no-psk no-srp no-engines "
Patrick Williams26ece152015-09-22 21:59:41 -05005
6# Disable SSL (keep TLS only).
Ed Tanous2ee96f52018-09-07 10:18:44 -07007EXTRA_OECONF_append_class-target = " no-ssl2 no-ssl3 "
Patrick Williams26ece152015-09-22 21:59:41 -05008
9# Disable various algorithms.
Ed Tanous2ee96f52018-09-07 10:18:44 -070010EXTRA_OECONF_append_class-target = " no-idea no-md2 no-mdc2 no-rc5 no-md4 \
Patrick Williams26ece152015-09-22 21:59:41 -050011 no-ripemd160 no-rmd160 no-whirlpool no-sha0 no-camellia \
12 no-rc2 no-rc4 no-bf no-cast no-seed no-gost "
Patrick Williams3dbac6d2016-05-26 18:03:12 -050013
14do_configure_append() {
15 oe_runmake depend
16}