problem with hmac header...

2008-04-18 Thread Amit Kumar
Hi All , I am using the openssl version openssl-0.9.8d and installed . I included openssl/include/openssl/ header files . but while accessing hmac.h from my net-snmp i am getting some errors mips64-octeon-linux-gnu-gcc -I../include -I. -I../snmplib -I../openssl/include -mabi=64

Re: problem with hmac header...

2008-04-18 Thread Kyle Hamilton
Problem: It's looking for the path where openssl's make install would put the header files. Specifically, it's looking for ../include/openssl/hmac.h. Potential Solutions (choose 1): (1) mv ../openssl ../include (2) ln -s ../openssl ../include/openssl (3) -I.. (4) (preferred to ensure that all