| Summary: | net-libs/gnutls enable a useflag for extra PKCS/PKI (certtool binary) | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Manuel Rüger (RETIRED) <mrueg> |
| Component: | Current packages | Assignee: | Crypto team [DISABLED] <crypto+disabled> |
| Status: | RESOLVED INVALID | ||
| Severity: | normal | CC: | alonbl |
| Priority: | Normal | ||
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
More specifically I'm asking for a useflag that provides the gnutls certtool binary USE=tools? Thanks, sorry for the PEBKAC |
From lib/m4/hooks.m4: AC_MSG_CHECKING([whether to disable extra PKI stuff]) AC_ARG_ENABLE(extra-pki, AS_HELP_STRING([--disable-extra-pki], [only enable the basic PKI stuff]), enable_pki=$enableval, enable_pki=yes) if test "$enable_pki" != "yes"; then ac_full=0 AC_MSG_RESULT(yes) else AC_MSG_RESULT(no) AC_DEFINE([ENABLE_PKI], 1, [whether to include all the PKCS/PKI stuff]) fi AM_CONDITIONAL(ENABLE_PKI, test "$enable_pki" = "yes") Can we get a useflag to enable this?