lwip: fix duplicate definition of O_NONBLOCK

LwIP will define O_NONBLOCK in sockets.h if it isn't defined yet.
If sys/fcntl.h is included after socket.h, there will be duplicate definition.
Work around by including sys/fcntl.h into lwipopts.h.

https://github.com/espressif/esp-idf/issues/75
pull/89/merge
Ivan Grokhotkov 2016-11-08 09:05:05 +08:00
rodzic aa0cd0ab47
commit 3f8d9d71e2
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -35,6 +35,7 @@
#include <stdlib.h>
#include <time.h>
#include <sys/time.h>
#include <sys/fcntl.h>
#include "esp_task.h"
#include "sdkconfig.h"