diff options
author | Denys Fedoryshchenko <denys.f@collabora.com> | 2024-10-23 00:31:23 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-23 00:31:23 +0300 |
commit | a90ac41f32e5ba78441e6359df8c01e593200cf0 (patch) | |
tree | db2103f062a1f3e9a318d0e8da8fe3dacb72525e /accel-pppd | |
parent | aa551fe44a5801d8d5963e43791d5b5f959c3e32 (diff) | |
parent | 53485e08e3d304db4a607506d03504540ab8f796 (diff) | |
download | accel-ppp-a90ac41f32e5ba78441e6359df8c01e593200cf0.tar.gz accel-ppp-a90ac41f32e5ba78441e6359df8c01e593200cf0.zip |
Merge pull request #188 from svlobanov/entware
build: fix build for entware (HAVE_GOOD_IFARP detection issue)
Diffstat (limited to 'accel-pppd')
-rw-r--r-- | accel-pppd/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/accel-pppd/CMakeLists.txt b/accel-pppd/CMakeLists.txt index 496fbdca..7b626c44 100644 --- a/accel-pppd/CMakeLists.txt +++ b/accel-pppd/CMakeLists.txt @@ -60,6 +60,7 @@ ENDIF (HAVE_FREE_FN_T) INCLUDE (CheckCSourceCompiles) CHECK_C_SOURCE_COMPILES(" +#include <sys/socket.h> #include <linux/if_arp.h> #include <net/ethernet.h> int main(void) |