. "$GRIMOIRE/depends_one_of.function"

case $THIS_SUB_DEPENDS in
    SSL) message "$SPELL with SSL backend is requested, forcing it" &&
         depends_one_of  WGET_SSL \
                         gnutls '--with-ssl=gnutls' \
                         openssl '--with-ssl=openssl' \
                         libressl '--with-ssl=openssl' \
                         wolfssl '--with-ssl=wolfssl' \
                         'SSL library'
         ;;
      *) echo "unknown sub_depends $THIS_SUB_DEPENDS"; false ;;
esac
