So, trying to build Moloch the hard way:
#
#
sh configure --with-pfring=/root/PF_RING/userland/libpcap-1.7.4/
.
.
.
.
configure: error: pcap.h or libpcap.a not found in /root/PF_RING/userland/libpcap-1.7.4/
#
#
find /root/PF_RING/userland/libpcap-1.7.4/ -name pcap.h
/root/PF_RING/userland/libpcap-1.7.4/pcap/pcap.h
/root/PF_RING/userland/libpcap-1.7.4/pcap.h
#
#
find /root/PF_RING/userland/libpcap-1.7.4/ -name libpcap.a
/root/PF_RING/userland/libpcap-1.7.4/libpcap.a
I am trying to do this without easybutton, and I have no access to the internet to pull content for third party packages. I do have them tar'd up (the third party packages) from a different install done on an internet facing site, so I can link against those as needed. But I can't even get that far, since this just does not even see the specified src path to stuff I know I have. What is wrong with this? Thanks.