Hello,

I am currently modifying libpcap (v1.0.0) and I want to test my modifications with tcpdump (v4.0.0).
I did the usual ./configure / make / sudo make install in libpcap directory on an ubuntu 8.04 distrib and it seem to work well.

But then, I don't know how to use that new library version.
I recompiled tcpdump and the command :
tcpdump-4.0.0$ ldd ./tcpdump
gives me for libpcap :
libpcap.so.0.8 => /usr/lib/libpcap.so.0.8 (0x00007f5bf3317000)

Furthermore, tcpdump --version gives me :
tcpdump version 4.0.0
libpcap version 0.9.8


Or I want to link tcpdump with the latest version I have and not with an old one still present on my computer.

I am not very familiar with libraries so if I forgot to give some informations or if you have an idea how can I solve my problem, I will appreciate your comments.

Thanks