summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2008-11-18 12:53:39 +0000
committerMatt Johnston <matt@ucc.asn.au>2008-11-18 12:53:39 +0000
commit72f0bca46cef1e29c2195f5ae6d615a065770e03 (patch)
treeecfddd18e1926e24bfdb12059ab3ef865f3a2a37
parenta1c7437dde9c1bb97d76438e1f08fbee35f17a44 (diff)
downloaddropbear-72f0bca46cef1e29c2195f5ae6d615a065770e03.tar.gz
- Allow building with neither server nor client specified
-rw-r--r--sysoptions.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sysoptions.h b/sysoptions.h
index c98e1ec..2de1184 100644
--- a/sysoptions.h
+++ b/sysoptions.h
@@ -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