case $THIS_SUB_DEPENDS in
  3.14.x) message "${MESSAGE_COLOR}3.14.x release needed, forcing it.${DEFAULT_COLOR}" &&
          NSS_BRANCH="3.14"
       ;;
  3.15.x) message "${MESSAGE_COLOR}3.15.x release needed, forcing it.${DEFAULT_COLOR}" &&
          NSS_BRANCH="3.15"
       ;;
  3.16.x) message "${MESSAGE_COLOR}3.16.x release needed, forcing it.${DEFAULT_COLOR}" &&
          NSS_BRANCH="3.16"
       ;;
  3.17.x) message "${MESSAGE_COLOR}3.17.x release needed, forcing it.${DEFAULT_COLOR}" &&
          NSS_BRANCH="3.17"
       ;;
     PEM) message "${MESSAGE_COLOR}nss with PEM support needed, forcing it.${DEFAULT_COLOR}" &&
          NSS_PEM="y"
       ;;
       *) message "${PROBLEM_COLOR}Unknown sub-depends!${DEFAULT_COLOR}" &&
          return 1
       ;;
esac
