I am developing a simple chrome extension to encrypt data and upload it to dropbox. I built the openssl library on the link naclports to use in my NaCl module. My makefile is posted on codeshare link. The code is not able to locate the openssl header files, it reports errors as follows:
CXX pnacl/Release/crest.o
In file included from crest.cc:17:
./aes.h:4:10: fatal error: 'openssl/conf.h' file not found
#include <openssl/conf.h>
^
1 error generated.
make: *** [pnacl/Release/crest.o] Error 1
For reference I am also posting links to my sources files: aes.h header file, aes.c code, crest.cc