diff --git a/Common/3dParty/openssl/build.sh b/Common/3dParty/openssl/build.sh index 0a6ad97ca0..04b5f32457 100755 --- a/Common/3dParty/openssl/build.sh +++ b/Common/3dParty/openssl/build.sh @@ -30,8 +30,8 @@ fi echo "$platform$arch" if [ ! -f Makefile ]; then - perl ./Configure $platform$arch - ./config + #perl ./Configure $platform$arch + ./config no-shared no-asm fi make diff --git a/Common/3dParty/openssl/openssl.pri b/Common/3dParty/openssl/openssl.pri new file mode 100644 index 0000000000..0e0c361705 --- /dev/null +++ b/Common/3dParty/openssl/openssl.pri @@ -0,0 +1,11 @@ +core_linux { + +INCLUDEPATH += $$PWD/openssl/include + +LIBS += -L$$PWD/openssl/libssl.a +LIBS += -L$$PWD/openssl/libcrypto.a + +#LIBS += -lssl +#LIBS += -lcrypto + +}