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

[MonoPosixHelper] Fix compilation for Android.

The Android NDK decalres the `struct timeval` struct in <sys/time.h>.
Update sys-socket.c to #include <sys/time.h> to fix compilation
with the Android NDK.
Jonathan Pryor 10 лет назад
Родитель
Сommit
535964dc5f
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      support/sys-socket.c

+ 1 - 0
support/sys-socket.c

@@ -8,6 +8,7 @@
  */
 
 #include <sys/socket.h>
+#include <sys/time.h>
 #include <netinet/in.h>
 #include <sys/un.h>