Compiling SIPp (Ubuntu 6.06)

Linux howto's, compile information, information on whatever we learned on working with linux, MACOs and - of course - Products of the big evil....
Post Reply
User avatar
^rooker
Site Admin
Posts: 1483
Joined: Fri Aug 29, 2003 8:39 pm

Compiling SIPp (Ubuntu 6.06)

Post by ^rooker »

[PROBLEM]
While compiling SIPp (v1.1 / 2006-11-14)
auth.c:32:25: error: openssl/md5.h: No such file or directory
auth.c: In function ‘createAuthHeaderMD5’:
auth.c:192: error: ‘MD5_CTX’ undeclared (first use in this function)
auth.c:192: error: (Each undeclared identifier is reported only once
auth.c:192: error: for each function it appears in.)
auth.c:192: error: syntax error before ‘Md5Ctx’
auth.c:230: error: ‘Md5Ctx’ undeclared (first use in this function)
auth.c: In function ‘createAuthHeaderAKAv1MD5’:
[SOLUTION]
"libssl-dev" is missing.
use "apt-get install libssl-dev".
User avatar
^rooker
Site Admin
Posts: 1483
Joined: Fri Aug 29, 2003 8:39 pm

missing pcap libraries

Post by ^rooker »

[PROBLEM]
send_packets.c:44:18: error: pcap.h: No such file or directory
make[1]: *** [send_packets.o] Error 1
[SOLUTION]
obviously, the pcap libraries are missing:

"apt-get install libpcap-dev"
Post Reply