diff options
author | Matt Johnston <matt@ucc.asn.au> | 2015-10-21 23:08:22 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2015-10-21 23:08:22 +0800 |
commit | 00798ca8ccf7d2365be11649b0c8474634c3d72e (patch) | |
tree | 666e29d60bf49c46938eec75f70a709120c7fb7d /options.h | |
parent | e84cb3c3c28e8120484197b817631ded4141cc74 (diff) |
Test for crypt() rather than crypt.h
Print a message from configure if getpass() or crypt() were missing
Diffstat (limited to 'options.h')
-rw-r--r-- | options.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -206,8 +206,8 @@ If you test it please contact the Dropbear author */ * PAM challenge/response. * You can't enable both PASSWORD and PAM. */ -/* This requires crypt.h & crypt. */ -#ifdef HAVE_CRYPT_H +/* This requires crypt() */ +#ifdef HAVE_CRYPT #define ENABLE_SVR_PASSWORD_AUTH #endif /* PAM requires ./configure --enable-pam */ |