Просмотр исходного кода

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
Ivan Grokhotkov 9 лет назад
Родитель
Сommit
3f8d9d71e2
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      components/lwip/include/lwip/port/lwipopts.h

+ 1 - 0
components/lwip/include/lwip/port/lwipopts.h

@@ -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"