Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Solved Configure ERROR in Qt 5.8.0 Win + VC2013 + SSL + OpenSSL

    General and Desktop
    qt5.8.0 vc2013 ssl openssl configure
    6
    22
    16058
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Q
      qDebug @jsulm last edited by qDebug

      @jsulm Sorry for the delay, i had some vacation :)

      Here we go:

      configure -mp -static -static-runtime -debug-and-release -prefix "C:\Qt\Qt5.8.0-Static" -I "C:\OpenSSL-Win32\include" -L "C:\OpenSSL-Win32\lib" -platform win32-msvc2013 -ssl -openssl -qt-zlib -qt-pcre -qt-libpng -qt-libjpeg -qt-freetype -opengl desktop -sql-sqlite -sql-odbc -opensource -confirm-license -make libs -nomake tools -nomake examples -nomake tests
      
      ERROR: Feature 'openssl' was enabled, but the pre-condition '!features.securetransport && tests.open
      ssl' failed.
      
      ERROR: Feature 'ssl' was enabled, but the pre-condition 'config.winrt || features.securetransport ||
       features.openssl' failed.
      
      Qmake failed, return code 3
      

      config.log:

      + cd /d C:\Qt\Qt5.8.0-Static\Src\qtbase\config.tests\unix\openssl && C:\Qt\Qt5.8.0-Static\Src\qtbase\bin\qmake.exe "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += static console" C:/Qt/Qt5.8.0-Static/Src/qtbase/config.tests/unix/openssl
      + cd /d C:\Qt\Qt5.8.0-Static\Src\qtbase\config.tests\unix\openssl && set MAKEFLAGS=& nmake clean && set MAKEFLAGS=& nmake
      
      > .\openssl.cpp(40) : fatal error C1083: Cannot open include file: 'openssl/opensslv.h': No such file or directory
      > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\BIN\cl.EXE"' : return code '0x2'
      > Stop
      
      test config.network.tests.openssl FAILED
      

      I just believe there is a bug in 5.8.0. Because in my include path there is a openssl/opensslv.h to be exact "C:\OpenSSL-Win32\include\openssl\opensslv.h" and i did copy the files to "C:\Qt\Qt5.8.0-Static\Src\qtbase\config.tests\unix\openssl" - same result. Why is there a config test for Unix on Windows anyways?

      As i mentioned before: the -I and -L params never worked for me on Windows + Visual Studio compiler before, i posted my workaround above.

      Is here some one who actually did compile 5.8.0 on Win + VC 2013 before, shared or static?

      Thanks!

      1 Reply Last reply Reply Quote 0
      • SGaist
        SGaist Lifetime Qt Champion last edited by

        Hi,

        Which version of OpenSSL are you using ?

        Interested in AI ? www.idiap.ch
        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

        1 Reply Last reply Reply Quote 0
        • Q
          qDebug @qDebug last edited by qDebug

          @qDebug said in Configure ERROR in Qt 5.8.0 Win + VC2013 + SSL + OpenSSL:

          I used OpenSSL 1.1.0e and also an older version 1.1.0c - same errors.

          I guess the problem may not be the version of Openssl, because the configure script does not find the files, no matter what version. :(

          1 Reply Last reply Reply Quote 0
          • SGaist
            SGaist Lifetime Qt Champion last edited by

            Did you add -I and -L options to configure so it can find the OpenSSL headers and libraries ?

            Interested in AI ? www.idiap.ch
            Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

            Q 1 Reply Last reply Reply Quote 0
            • Q
              qDebug @SGaist last edited by

              @SGaist Yes.

              1 Reply Last reply Reply Quote 0
              • SGaist
                SGaist Lifetime Qt Champion last edited by

                Did you check that you are using an OpenSSL version that's also built with VS2013 ?

                Interested in AI ? www.idiap.ch
                Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                Q 1 Reply Last reply Reply Quote 0
                • Q
                  qDebug @SGaist last edited by qDebug

                  @SGaist Yes. All version of Openssl i tested got VC libs and at least one i used in a VC project and compiled ok.

                  But why even care if the error messages tells:

                  > .\openssl.cpp(40) : fatal error C1083: Cannot open include file: 'openssl/opensslv.h': No such file or directory
                  

                  If the testing script does not even find the opensslv.h why care about the openssl version at all? From my technical understanding i have to fix this issue first before i may even get into the version. Please correct me if i am wrong.

                  Thanks!

                  S 1 Reply Last reply Reply Quote 0
                  • SGaist
                    SGaist Lifetime Qt Champion last edited by

                    Just saw something, you should either pass your paths with double backslashes or use the forward slash unix notation. Single backslashes are used to escape the character that follows. IIRC, the configure script should be resistant to that but it still worth doing things right.

                    Interested in AI ? www.idiap.ch
                    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                    Q 1 Reply Last reply Reply Quote 0
                    • S
                      stephane78 @qDebug last edited by

                      @qDebug you should use openssl 1.0.2h (or i,j,k) not openssl 1.1.0...... see http://wiki.qt.io/Qt_5.8_Tools_and_Versions

                      1 Reply Last reply Reply Quote 0
                      • Q
                        qDebug @SGaist last edited by qDebug

                        @SGaist did try that of course too. Just now with openssl 1.0.2k like

                        configure -mp -static -static-runtime -debug-and-release -prefix "C:\Qt\Qt5.8.0-Static" -I "C:\\Qt\\openssl-1.0.2k\\include" -L "C:\\Qt\\openssl-1.0.2k\\lib" -platform win32-msvc2013 -ssl -openssl -qt-zlib -qt-pcre -qt-libpng -qt-libjpeg -qt-freetype -opengl desktop -sql-sqlite -sql-odbc -opensource -confirm-license -make libs -nomake tools -nomake examples -nomake tests
                        

                        and

                        configure -mp -static -static-runtime -debug-and-release -prefix "C:\Qt\Qt5.8.0-Static" -I "C:/Qt/openssl-1.0.2k/include" -L "C:/Qt/openssl-1.0.2k/lib" -platform win32-msvc2013 -ssl -openssl -qt-zlib -qt-pcre -qt-libpng -qt-libjpeg -qt-freetype -opengl desktop -sql-sqlite -sql-odbc -opensource -confirm-license -make libs -nomake tools -nomake examples -nomake tests
                        

                        Openssl not found.

                        @stephane78 since i compiled older versions of Qt (5.7.0) using the same openssl version i thought it should also work with 5.8.0. But right now, i used latest 1.0.2k but since the script won't find any files, the result is the same.

                        Maybe we can take a shortcut here and some one may be so kind and post how it will work for sure?

                        Thanks!

                        1 Reply Last reply Reply Quote 0
                        • Q
                          qDebug last edited by

                          Well, since there is no simple solution i guess, can anyone tell me please where i can disable the check scrip?

                          Thanks!

                          jsulm 1 Reply Last reply Reply Quote 0
                          • jsulm
                            jsulm Lifetime Qt Champion @qDebug last edited by

                            @qDebug Just don't pass -ssl -openssl to configure?

                            https://forum.qt.io/topic/113070/qt-code-of-conduct

                            Q 1 Reply Last reply Reply Quote 0
                            • Q
                              qDebug @jsulm last edited by

                              @jsulm I did not exactly mention it before but i really need ssl and openssl support (-;

                              1 Reply Last reply Reply Quote 0
                              • K
                                kfrosty last edited by

                                Deleting the config.cache file solved it for me.

                                Q 1 Reply Last reply Reply Quote 5
                                • Q
                                  qDebug @kfrosty last edited by

                                  @kfrosty Thank you! Did work for me too! :)

                                  1 Reply Last reply Reply Quote 0
                                  • First post
                                    Last post