From 549bcf6d71f7bb31c8be6e1d8700ab51c55b6987 Mon Sep 17 00:00:00 2001 From: dogtopus Date: Fri, 22 Dec 2017 12:29:34 -0400 Subject: Fix build on linux, enable build directory support Specifically: - Include stddef.h for missing ptrdiff_t - Define PCAP_OPENFLAG_PROMISCUOUS if not using WinPcap because it seems to be a WinPcap extension - Make use of CMAKE_CURRENT_{SOURCE,BINARY}_DIR to enable building under a directory other than root of the project --- src/WifiAP.cpp | 3 +++ src/libui_sdl/Platform.cpp | 1 + 2 files changed, 4 insertions(+) (limited to 'src') diff --git a/src/WifiAP.cpp b/src/WifiAP.cpp index f8c9f79..963b4d2 100644 --- a/src/WifiAP.cpp +++ b/src/WifiAP.cpp @@ -23,6 +23,9 @@ #include "WifiAP.h" #include "Platform.h" +#ifndef __WIN32__ +#include +#endif namespace WifiAP { diff --git a/src/libui_sdl/Platform.cpp b/src/libui_sdl/Platform.cpp index 507e0f3..80aa0e9 100644 --- a/src/libui_sdl/Platform.cpp +++ b/src/libui_sdl/Platform.cpp @@ -38,6 +38,7 @@ #define socket_t int #define sockaddr_t struct sockaddr #define closesocket close + #define PCAP_OPENFLAG_PROMISCUOUS 1 #endif #ifndef INVALID_SOCKET -- cgit v1.2.3