Encrypt should not require Lua

This commit is contained in:
Jan-Piet Mens
2016-01-24 13:39:10 +01:00
parent 28b776ba3e
commit 74e81fb56d
2 changed files with 3 additions and 2 deletions

View File

@@ -18,6 +18,7 @@ WITH_PING ?= yes
WITH_KILL ?= no
# Do you want support for payload encryption with libsodium?
# This requires WITH_LMDB to be configured.
WITH_ENCRYPT ?= no
# Do you want R_only support? (Probably not; this is for Hosted)

View File

@@ -35,9 +35,9 @@ struct udata {
# ifdef WITH_LMDB
struct gcache *luadb; /* lmdb named database 'luadb' */
# endif
# ifdef WITH_ENCRYPT
#endif
#ifdef WITH_ENCRYPT
struct gcache *keydb; /* encryption keys */
# endif
#endif
char *label; /* Server label */
char *geokey; /* Google reverse-geo API key */