From unknown Fri Mar 29 02:00:16 2024 X-Loop: owner@bugs.x2go.org Subject: Bug#566: Successful compile, but no bugfix Reply-To: Michael DePaulo , 566@bugs.x2go.org Resent-From: Michael DePaulo Resent-To: x2go-dev@lists.x2go.org Resent-CC: X2Go Developers X-Loop: owner@bugs.x2go.org Resent-Date: Thu, 11 Sep 2014 12:15:02 +0000 Resent-Message-ID: Resent-Sender: owner@bugs.x2go.org X-X2Go-PR-Message: followup 566 X-X2Go-PR-Package: x2goclient X-X2Go-PR-Keywords: Received: via spool by 566-submit@bugs.x2go.org id=B566.14104375566494 (code B ref 566); Thu, 11 Sep 2014 12:15:02 +0000 Received: (at 566) by bugs.x2go.org; 11 Sep 2014 12:12:36 +0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on ymir.das-netzwerkteam.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=BAYES_40,FREEMAIL_FROM, T_DKIM_INVALID autolearn=ham version=3.3.2 Received: from mail-wi0-f170.google.com (mail-wi0-f170.google.com [209.85.212.170]) by ymir.das-netzwerkteam.de (Postfix) with ESMTPS id 5A3D23D378 for <566@bugs.x2go.org>; Thu, 11 Sep 2014 14:12:35 +0200 (CEST) Received: by mail-wi0-f170.google.com with SMTP id em10so1028271wid.3 for <566@bugs.x2go.org>; Thu, 11 Sep 2014 05:12:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=Fav9bsJDvaSx4GmT/sdvK9o+ngU012N5aZ4npiWZnxY=; b=fLOWg4ax1Rh+uPvRcgfZhFFeq86KxcWWWpisg8BvWZdFHAgSK1BgPm9n22OrM/i11z v37IctFQU4sHJucCN44MtbWEYOt7mSLeDXVfF7+mvAAsWe3yD9lJA9YvGpznsAF56jj+ 4HWLHs5DhWc3v46zAIs3WGuGOD0Y2c7yoidvjDbpM7PQTDsMUuS6SHhi4k9ZKn2btuV9 w0MQAgiCfkgFIhWH0eMu9bW+J89NNfTvqDcpdqJNpwqPf8yPqQ0A61/9ePn2/DYodjgb TJ+Xog2Dm90f76DqZGOhSI/iV/2DIIAy9v+j1IHUmaRERYb00JgKHILg2ZDHZKHB6B1Z FVkQ== MIME-Version: 1.0 X-Received: by 10.180.76.209 with SMTP id m17mr1692073wiw.78.1410437554903; Thu, 11 Sep 2014 05:12:34 -0700 (PDT) Received: by 10.180.106.39 with HTTP; Thu, 11 Sep 2014 05:12:34 -0700 (PDT) Date: Thu, 11 Sep 2014 08:12:34 -0400 Message-ID: From: Michael DePaulo To: 566@bugs.x2go.org Content-Type: text/plain; charset=UTF-8 I managed to compile libssh successfully, but I am not sure if it actually is compiled with unicode support. I say this because the utf8 patch does not fix this bug. My friend Mike Frederick expressed interest in helping me, so here are all the details of how I built: As mentioned in bug 474, I am using this build of mingw 4.8.2, which QT 4.8.6 wants: http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/4.8.2/threads-posix/dwarf/i686-4.8.2-release-posix-dwarf-rt_v3-rev3.7z/download I am using CMake 2.8.12.2 (the latest 2.x version): http://www.cmake.org/files/v2.8/cmake-2.8.12.2-win32-x86.exe openssl 1.0.1i http://slproweb.com/download/Win32OpenSSL-1_0_1i.exe zlib 1.2.8 http://zlib.net/zlib128-dll.zip These are the CMake options I specified: CMAKE_CXX_FLAGS:STRING=-DUNICODE -D_UNICODE CMAKE_C_FLAGS:STRING=-DUNICODE -D_UNICODE CMAKE_EXE_LINKER_FLAGS:STRING=-municode CMAKE_MODULE_LINKER_FLAGS:STRING=-municode CMAKE_SHARED_LINKER_FLAGS:STRING=-municode CMAKE_STATIC_LINKER_FLAGS:STRING=-municode WITH_EXAMPLES:BOOL=OFF (In addition to specifying ZLIB_ROOT_DIR) The exact source I am using is this tarball: http://code.x2go.org/releases/source/libssh-modified-by-x2go-project/libssh-0.6.3-762055b-pageant-support-mingw482.src.zip Which is libssh-0.6.3 with these 2 patches applied: http://code.x2go.org/releases/source/libssh-modified-by-x2go-project/implement-support-for-putty-s-pageant-0.6.3-de62963.patch http://code.x2go.org/releases/source/libssh-modified-by-x2go-project/libssh-0.6.3-pthread.c.relativepaths.patch