mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-24 02:59:01 +08:00
Remove MG_ENABLE_MGOS
This commit is contained in:
parent
0fbdda4d2e
commit
5fe34fd6c3
12
mongoose.h
12
mongoose.h
@ -311,10 +311,6 @@ static __inline struct tm *localtime_r(time_t *t, struct tm *tm) {
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef MG_ENABLE_LWIP
|
||||
#define MG_ENABLE_LWIP 0
|
||||
#endif
|
||||
|
||||
#ifndef MG_ENABLE_SOCKET
|
||||
#define MG_ENABLE_SOCKET 1
|
||||
#endif
|
||||
@ -343,10 +339,6 @@ static __inline struct tm *localtime_r(time_t *t, struct tm *tm) {
|
||||
#define MG_ENABLE_LOG 1
|
||||
#endif
|
||||
|
||||
#ifndef MG_ENABLE_MGOS
|
||||
#define MG_ENABLE_MGOS 0
|
||||
#endif
|
||||
|
||||
#ifndef MG_ENABLE_MD5
|
||||
#define MG_ENABLE_MD5 0
|
||||
#endif
|
||||
@ -410,9 +402,6 @@ const char *mg_strstr(const struct mg_str haystack, const struct mg_str needle);
|
||||
|
||||
|
||||
|
||||
#if MG_ENABLE_MGOS
|
||||
#include <common/cs_dbg.h>
|
||||
#else
|
||||
#if MG_ENABLE_LOG
|
||||
#define LOG(level, args) \
|
||||
do { \
|
||||
@ -426,7 +415,6 @@ void mg_log_set_callback(void (*fn)(const void *, int, void *), void *param);
|
||||
#else
|
||||
#define LOG(level, args)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
struct mg_timer {
|
||||
|
@ -1,9 +1,5 @@
|
||||
#pragma once
|
||||
|
||||
#ifndef MG_ENABLE_LWIP
|
||||
#define MG_ENABLE_LWIP 0
|
||||
#endif
|
||||
|
||||
#ifndef MG_ENABLE_SOCKET
|
||||
#define MG_ENABLE_SOCKET 1
|
||||
#endif
|
||||
@ -32,10 +28,6 @@
|
||||
#define MG_ENABLE_LOG 1
|
||||
#endif
|
||||
|
||||
#ifndef MG_ENABLE_MGOS
|
||||
#define MG_ENABLE_MGOS 0
|
||||
#endif
|
||||
|
||||
#ifndef MG_ENABLE_MD5
|
||||
#define MG_ENABLE_MD5 0
|
||||
#endif
|
||||
|
@ -3,9 +3,6 @@
|
||||
#include "arch.h"
|
||||
#include "config.h"
|
||||
|
||||
#if MG_ENABLE_MGOS
|
||||
#include <common/cs_dbg.h>
|
||||
#else
|
||||
#if MG_ENABLE_LOG
|
||||
#define LOG(level, args) \
|
||||
do { \
|
||||
@ -19,4 +16,3 @@ void mg_log_set_callback(void (*fn)(const void *, int, void *), void *param);
|
||||
#else
|
||||
#define LOG(level, args)
|
||||
#endif
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user