I am trying to build Git from this repository: git-for-windows, which is supposedly last version of git with windows-specific changes. I am working in MinGw32 environment on Windows.
I have run into the following problem: when I try to build git, I get:
compat/mingw.h:134:25: fatal error: openssl/ssl.h:
No such file or directory #include <openssl/ssl.h>
Why is that? I have openssl built an installed from source in the same environment, using make
-> make install
sequence.
In particular, ssl.h
was installed into /usr/local/ssl/include/openssl/ssl.h
and /local/ssl/include/openssl/ssl.h
.
How can I resolve this problem?