diff options
author | dogtopus <dogtopus@users.noreply.github.com> | 2018-02-22 10:39:02 -0400 |
---|---|---|
committer | dogtopus <dogtopus@users.noreply.github.com> | 2018-02-22 10:39:02 -0400 |
commit | 41b40cd4fadfbdebcac50b73cb77c5fa589d020b (patch) | |
tree | 45006681a4f03e1cf2070ea94202f0955548abc2 | |
parent | aab0030137d70a7ef06c2d2e859f195dd06e0079 (diff) |
Add linux libpcap names to the pcap library list
-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 80aa0e9..1702685 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 }; |