diff options
author | StapleButter <thetotalworm@gmail.com> | 2018-12-15 00:30:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-15 00:30:44 +0100 |
commit | d30043bc85954af0183eae2d2c3435d2132f418c (patch) | |
tree | a1fabb4bbf3649c9869ed81327c3efc60305472c /src | |
parent | 56c21608551381bd6ff41e9f5358f580b461b254 (diff) | |
parent | 41b40cd4fadfbdebcac50b73cb77c5fa589d020b (diff) |
Merge pull request #230 from dogtopus/pcap-libnames-linux
Add linux libpcap names to the pcap library list
Diffstat (limited to 'src')
-rw-r--r-- | src/libui_sdl/Platform.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libui_sdl/Platform.cpp b/src/libui_sdl/Platform.cpp index 0c29f6b..733114e 100644 --- a/src/libui_sdl/Platform.cpp +++ b/src/libui_sdl/Platform.cpp @@ -95,7 +95,9 @@ const char* PCapLibNames[] = // TODO: name for npcap in non-WinPCap mode "wpcap.dll", #else - // TODO: Linux lib names + // Linux lib names + "libpcap.so.1", + "libpcap.so", #endif NULL }; |