Test building with MG_ENABLE_FILESYSTEM=0

Fix errors so it builds.

PUBLISHED_FROM=db9fc9ef997d6b1847117e8db9aefdc7e540f4cc
This commit is contained in:
Deomid Ryabkov 2016-12-09 23:19:44 +00:00 committed by Cesanta Bot
parent 5ebff5d15e
commit 39ea91cfc2
3 changed files with 3 additions and 4 deletions

View File

@ -1,2 +1,3 @@
PROG = websocket_chat
MODULE_CFLAGS = -DMG_ENABLE_FILESYSTEM=0
include ../examples.mk

View File

@ -7,7 +7,6 @@
static sig_atomic_t s_signal_received = 0;
static const char *s_http_port = "8000";
static struct mg_serve_http_opts s_http_server_opts;
static void signal_handler(int sig_num) {
signal(sig_num, signal_handler); // Reinstantiate signal handler
@ -69,7 +68,6 @@ int main(void) {
mg_mgr_init(&mgr, NULL);
nc = mg_bind(&mgr, s_http_port, ev_handler);
s_http_server_opts.document_root = ".";
mg_set_protocol_http_websocket(nc);
printf("Started on port %s\n", s_http_port);

View File

@ -304,7 +304,7 @@ typedef struct _stati64 cs_stat_t;
#endif
#ifndef MG_ENABLE_HTTP_CGI
#define MG_ENABLE_HTTP_CGI 1
#define MG_ENABLE_HTTP_CGI MG_ENABLE_FILESYSTEM
#endif
#ifndef MG_NET_IF
@ -443,7 +443,7 @@ typedef struct stat cs_stat_t;
#endif
#ifndef MG_ENABLE_HTTP_CGI
#define MG_ENABLE_HTTP_CGI 1
#define MG_ENABLE_HTTP_CGI MG_ENABLE_FILESYSTEM
#endif
#ifndef MG_NET_IF