Reputation: 1633
I'm compiling a software that depends on libpcap
,so I yum install libpcap
,but when I ./configure
it still reports can't find libpcap,so I run yum install libpcap-devel
and this time it works.
My question is,what's the difference and what exactly was ./configure
looking for when it says libpcap
not found?
Upvotes: 0
Views: 3418
Reputation: 5232
"lib" contains the things your program needs to run (the ".so" file). "lib-devel" contains the things your program needs to compile (the header files).
Upvotes: 2