I see that localoptions.h now can be used to enable/disable options which
are in default_options.h and sysoptions.h... nice

There is a wrong definition in the default_options.h
/* Whether to support "-c" and "-m" flags to choose ciphers/MACs at runtime
*/
#ifndef ENABLE_USER_ALGO_LIST
#define ENABLE_USER_ALGO_LIST 1
#endif

Should be
/* Whether to support "-c" and "-m" flags to choose ciphers/MACs at runtime
*/
#ifndef DROPBEAR_USER_ALGO_LIST
#define DROPBEAR_USER_ALGO_LIST 1
#endif


Hans

Reply via email to