Topic: building in non-standard environment
I am in the process of porting wolfssl embedded SSL to an embedded device without a standard environment. I followed the documentation to put all the files in one directory. Also ../openssl was created and populated with .h files.
In "tls.c" there is a line of code #include "ssl.h" ssl.h cannot be found in the current path and after looking at all the source code it can be found in ../openssl/ssl.h . I can add this as an include in the build path.
I mention this because the directions specifically say to put openssl header files in the parent path so I expected that the source would be looking for "../openssl/ssl.h" and the other .h files.