如何在 cygwin64 上使用 pcap 编译 SIPP?

如何在 cygwin64 上使用 pcap 编译 SIPP?

我正在尝试在 Windows 7 64 位上的 cygwin64 上编译 SIPP,并根据此处的官方 sipp 文档启用 pcap:

http://sipp.sourceforge.net/doc/reference.html#Installing+SIPp

上面的链接中有一个关于我的错误的警告,但是我不知道如何避免它。以下是警告:

警告

SIPp 在 Windows 上可以在 CYGWIN 下编译,前提是你安装了 CYGWIN 的 IPv6 扩展(http://win6.jp/Cygwin/),以及 libncurses 和 >(可选的 OpenSSL 和 WinPcap)。目前不支持 SCTP。

当我尝试在我的 cygwin64 设置上运行 ./configure 时,我得到以下结果:

$ ./configure --with-pcap
checking build system type... x86_64-unknown-cygwin
checking host system type... x86_64-unknown-cygwin
checking target system type... x86_64-unknown-cygwin
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.exe
checking for suffix of executables... .exe
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for initscr in -lcurses... no
configure: error: ncurses library missing

几个相关的输出:

cygcheck -c ncurses
Cygwin Package Information
Package              Version            Status
ncurses              6.0-4.20160305     OK

cygcheck -c libncurses-devel
Cygwin Package Information
Package              Version            Status
libncurses-devel     6.0-4.20160305     OK

我想我需要帮助在 cygwin64 上安装 pcap 和 ncurses,因为它似乎无法找到正确的库。

相关内容