# HG changeset patch # User Matt Johnston # Date 1227012819 0 # Node ID cc2dff9bd6715b54661221ed3726e66437fbd793 # Parent 5e344cdfbae28d5b223d0cbc0969d32afb704e5f - Allow building with neither server nor client specified diff -r 5e344cdfbae2 -r cc2dff9bd671 sysoptions.h --- a/sysoptions.h Tue Nov 18 12:53:02 2008 +0000 +++ b/sysoptions.h Tue Nov 18 12:53:39 2008 +0000 @@ -202,5 +202,8 @@ #define IS_DROPBEAR_CLIENT 1 #else -#error You must compiled with either DROPBEAR_CLIENT or DROPBEAR_SERVER selected +/* Just building key utils? */ +#define IS_DROPBEAR_SERVER 0 +#define IS_DROPBEAR_CLIENT 0 + #endif