Klaus Darilion schrieb: > Hi! > > I have managed to build openssl under msys/mingw environment. How can I > configure pjproject to find the include files and the static libraries? Meanwhile I have found out that I can specify locations for gcc via environment variables. I have issued: export LIBRARY_PATH=/workspace/openssl-0.9.8g/ and export CPATH=/workspace/openssl-0.9.8g/include/ Now, the tests for the include file succeeds, but the test for -lssl fails (see blow). Any hints? thanks klaus > C:/DOKUME~1/darilion/workspace/openssl-0.9.8g/libssl.a(ssl_algs.o):ssl_algs.c:(.text+0x4): undefined reference to `EVP_des_cbc' > C:/DOKUME~1/darilion/workspace/openssl-0.9.8g/libssl.a(ssl_algs.o):ssl_algs.c:(.text+0xc): undefined reference to `EVP_add_cipher' > C:/DOKUME~1/darilion/workspace/openssl-0.9.8g/libssl.a(ssl_algs.o):ssl_algs.c:(.text+0x11): undefined reference to `EVP_des_ede3_cbc' > C:/DOKUME~1/darilion/workspace/openssl-0.9.8g/libssl.a(ssl_algs.o):ssl_algs.c:(.text+0x19): undefined reference to `EVP_add_cipher' > C:/DOKUME~1/darilion/workspace/openssl-0.9.8g/libssl.a(ssl_algs.o):ssl_algs.c:(.text+0x1e): undefined reference to `EVP_idea_cbc' > C:/DOKUME~1/darilion/workspace/openssl-0.9.8g/libssl.a(ssl_algs.o):ssl_algs.c:(.text+0x26): undefined reference to `EVP_add_cipher' > C:/DOKUME~1/darilion/workspace/openssl-0.9.8g/libssl.a(ssl_algs.o):ssl_algs.c:(.text+0x2b): undefined reference to `EVP_rc4' > ...