QSslSocket error messages during startup in newest development build

Issue #538 resolved
Holger Pandel created an issue

Hi!

After compiling the latest development revision (498ad9f87ea5) with Qt 5.5.1 and GCC 4.9.2, I get the following messages before Valentina's main window appears. Test under Win7 64bit (with system wide proxy setting) and Win10 64bit (without any proxy defined.)

The name of the JPGs reflect the order of their occurrence. Some messages are shown twice, but I thought I'll be precise on this...

Regards, Holger

Comments (11)

  1. Holger Pandel reporter

    Sadly, on my side, it is not fixed at all. The errors occur also with the newest revision... (distclean, build, uninstall and new install)

  2. Holger Pandel reporter

    How? Mingw32 compiler and with the following, slightly modified (because I'd like to start the whole building process from outside of the source directory) make_install.bat:

    set PATH=C:\Qt\Qt5.5.1\5.5\mingw492_32\bin;C:\Qt\Qt5.5.1\Tools\mingw492_32\bin;%PATH%
    rem script helps create installer
    
    rem find target architecture
    reg Query "HKLM\Hardware\Description\System\CentralProcessor\0" | find /i "x86" > NUL && set ARCHITECTURE=32BIT || set ARCHITECTURE=64BIT
    
    rem Path to Inno Setup according to architecture
    if %ARCHITECTURE%==32BIT set nsis_path="C:/Program Files/Inno Setup 5/iscc.exe"
    if %ARCHITECTURE%==64BIT set nsis_path="C:/Program Files (x86)/Inno Setup 5/iscc.exe"
    
    if not exist %nsis_path% (
        SET /P promt="Coudn't find Inno Setup. Do you want to continue?[Y\N]"
        IF "%promt%" == "Y" GOTO PREPARE
        IF "%promt%" == "y" GOTO PREPARE
        ELSE GOTO ONEXIT
    ) 
    
    :PREPARE
    cd valentina
    hg pull
    hg update develop
    
    cd
    rmdir /q /s build
    rem force qmake create new qm files
    del /Q share\translations\*.qm
    mkdir build
    cd build
    cd
    
    qmake -r CONFIG+=noTests ..\Valentina.pro
    IF ERRORLEVEL 1 GOTO ERRORQMAKE1
    IF ERRORLEVEL 0 GOTO MAKE
    
    :MAKE
    mingw32-make -j%NUMBER_OF_PROCESSORS%
    IF ERRORLEVEL 1 GOTO ERRORMAKE
    IF ERRORLEVEL 0 GOTO MAKEINSTALL
    
    :MAKEINSTALL
    mingw32-make install
    IF ERRORLEVEL 1 GOTO ERRORMAKEINSTALL
    IF ERRORLEVEL 0 GOTO ONEXIT
    
    :ERRORMAKEINSTALL
    echo Failed to create installer!
    @pause
    exit /b 1
    :ERRORMAKE
    echo Failed to build project!
    @pause
    exit /b 1
    :ERRORQMAKE2
    echo Failed to make the second run qmake!
    @pause
    exit /b 1
    :ERRORQMAKE1
    echo Failed to make the first run qmake!
    @pause
    exit /b 1 
    :ONEXIT
    echo Done!
    @pause
    
  3. Log in to comment