Skip to content
Snippets Groups Projects
  1. Nov 30, 2015
  2. Nov 28, 2015
  3. Nov 27, 2015
  4. Nov 26, 2015
  5. Nov 25, 2015
  6. Nov 23, 2015
  7. Nov 19, 2015
  8. Nov 17, 2015
  9. Nov 06, 2015
  10. Nov 04, 2015
  11. Oct 28, 2015
  12. Oct 21, 2015
    • Matt Johnston's avatar
      Test for crypt() rather than crypt.h · 00798ca8
      Matt Johnston authored
      Print a message from configure if getpass() or crypt() were missing
      00798ca8
    • Mike Frysinger's avatar
      fix default build when getpass() is unavailable · e84cb3c3
      Mike Frysinger authored
      if the system doesn't support getpass, we still default on the options
      that require it which causes a build failure.  instead, only default
      enable these when getpass is available.
      e84cb3c3
    • Mike Frysinger's avatar
      fix default build when crypt() is unavailable · 78b9cecb
      Mike Frysinger authored
      if the system doesn't support crypt.h/crypt, then ENABLE_SVR_PASSWORD_AUTH
      cannot work.  rather than default this to on all the time, do so only when
      support for the header is found.
      78b9cecb
    • Mike Frysinger's avatar
      avoid getpass when not used · 93c54fe6
      Mike Frysinger authored
      some systems (like android's bionic) do not provide getpass.  you can
      disable ENABLE_CLI_PASSWORD_AUTH & ENABLE_CLI_INTERACT_AUTH to avoid
      its use (and rely on pubkey auth), but the link still fails because
      the support file calls getpass.  do not define this func if both of
      those auth methods are not used.
      93c54fe6
    • Mike Frysinger's avatar
      fix build when ENABLE_CLI_INTERACT_AUTH is disabled · 5f97d0fb
      Mike Frysinger authored
      The session.h defines clientsession.cipher_none_after_auth only when
      ENABLE_CLI_INTERACT_AUTH is defined, but cli-session.c will always
      try to set that member.  export cipher_none_after_auth all the time.
      5f97d0fb