From 36f4e34b2702eabe991ec97dc0064c3b2b4d12fe Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Sun, 15 Jun 2014 00:33:28 +0200 Subject: Add 029_nxcomp_ppc64.full+lite.patch. Fix sockaddr handling on Big Endian systems (like PPC64). (Fixes: #515). --- debian/changelog | 2 ++ debian/patches/029_nxcomp_ppc64.full+lite.patch | 16 ++++++++++++++++ debian/patches/series | 1 + 3 files changed, 19 insertions(+) create mode 100644 debian/patches/029_nxcomp_ppc64.full+lite.patch diff --git a/debian/changelog b/debian/changelog index 6e5a49ecc..2729b3066 100644 --- a/debian/changelog +++ b/debian/changelog @@ -15,6 +15,8 @@ nx-libs (2:3.5.0.25-0x2go1) UNRELEASED; urgency=low * Add 302_nx-X11_xkbbasedir-detection.patch. For detecting XkbBaseDir test for xkb/rules/base instead of testing for deprecated file xkb/keymap.dir. (Fixes: #40). + * Add 029_nxcomp_ppc64.full+lite.patch. Fix sockaddr handling on + Big Endian systems (like PPC64). (Fixes: #515). -- Mike Gabriel Wed, 07 May 2014 09:58:10 +0200 diff --git a/debian/patches/029_nxcomp_ppc64.full+lite.patch b/debian/patches/029_nxcomp_ppc64.full+lite.patch new file mode 100644 index 000000000..8040925ba --- /dev/null +++ b/debian/patches/029_nxcomp_ppc64.full+lite.patch @@ -0,0 +1,16 @@ +diff --git a/nxcomp/Loop.cpp b/nxcomp/Loop.cpp +index c9617c3..955be85 100644 +--- a/nxcomp/Loop.cpp ++++ b/nxcomp/Loop.cpp +@@ -6854,9 +6854,9 @@ int WaitForRemote(int portNum) + { + sockaddr_in newAddr; + +- size_t addrLen = sizeof(sockaddr_in); ++ socklen_t addrLen = sizeof(sockaddr_in); + +- newFD = accept(proxyFD, (sockaddr *) &newAddr, (socklen_t *) &addrLen); ++ newFD = accept(proxyFD, (sockaddr *) &newAddr, &addrLen); + + if (newFD == -1) + { diff --git a/debian/patches/series b/debian/patches/series index e9ee779ac..58a164caf 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -24,6 +24,7 @@ 026_nxcompshad_honour-optflags.full.patch 027_nxcomp_abstract-X11-socket.full+lite.patch 028_nx-X11_abstract-kernel-sockets.full.patch +029_nxcomp_ppc64.full+lite.patch 030_nx-X11_configure-args.full.patch 031_nx-X11_parallel-make.full.patch 051_nxcomp_macos105-fdisset.full+lite.patch -- cgit v1.2.3