diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-03-01 21:46:32 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-03-01 21:46:32 +0100 |
commit | ae40bb9c4e579ad947dc4a18d042e725b912c128 (patch) | |
tree | 805cb63732464b54c2ae3318b5f07c7b78150c03 | |
parent | a5a0a5c29bf7c1d1e346b5813e6696a5f0522136 (diff) | |
parent | 66ef3e46f4f38e5755ae32ab49d065a2707e90e7 (diff) | |
download | nx-libs-ae40bb9c4e579ad947dc4a18d042e725b912c128.tar.gz nx-libs-ae40bb9c4e579ad947dc4a18d042e725b912c128.tar.bz2 nx-libs-ae40bb9c4e579ad947dc4a18d042e725b912c128.zip |
Merge branch 'mjtrangoni-WIP-travis' into 3.6.x
Attributes GH PR #624: https://github.com/ArcticaProject/nx-libs/pull/624
-rw-r--r-- | .travis.yml | 56 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | nxcomp/src/Loop.cpp | 2 | ||||
-rw-r--r-- | nxcompshad/src/X11.cpp | 2 |
4 files changed, 59 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..f8806d063 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,56 @@ +# Use new trusty images, should yield newer compilers and packages +sudo: true +dist: trusty +language: cpp + +matrix: + include: + - os: linux + addons: + apt: + sources: + - ubuntu-toolchain-r-test + packages: + - g++-4.9 + env: + - MATRIX_EVAL="CC=gcc-4.9 && CXX=g++-4.9" + + - os: linux + addons: + apt: + sources: + - ubuntu-toolchain-r-test + packages: + - g++-7 + env: + - MATRIX_EVAL="CC=gcc-7 && CXX=g++-7" + + - os: linux + addons: + apt: + sources: + - llvm-toolchain-trusty-3.9 + packages: + - clang-3.9 + env: + - MATRIX_EVAL="CC=clang-3.9 && CXX=clang++-3.9" + + - os: linux + addons: + apt: + sources: + - llvm-toolchain-trusty-5.0 + packages: + - clang-5.0 + env: + - MATRIX_EVAL="CC=clang-5.0 && CXX=clang++-5.0" + +before_install: + - sudo apt-get update -qq + # imake + - sudo apt-get install -y xutils-dev + # X11 libaries + - sudo apt-get install -y libxcomposite-dev libxfont-dev libxinerama-dev libxrandr-dev libxtst-dev x11proto-fonts-dev + - eval "${MATRIX_EVAL}" +script: + - make @@ -1,4 +1,4 @@ -# NX development by ArticaProject, X2Go and TheQVD +# NX development by ArticaProject, X2Go and TheQVD [![Build Status](https://travis-ci.org/ArcticaProject/nx-libs.svg)](https://travis-ci.org/ArcticaProject/nx-libs) This source tree started as a re-distribution of those NX packages needed to setup FreeNX and/or X2Go on a Linux server. diff --git a/nxcomp/src/Loop.cpp b/nxcomp/src/Loop.cpp index 5365a99cf..f22053cc6 100644 --- a/nxcomp/src/Loop.cpp +++ b/nxcomp/src/Loop.cpp @@ -3573,7 +3573,7 @@ int SetupAuthInstance() if (control -> ProxyMode == proxy_server) { - if (authCookie != NULL && *authCookie != '\0') + if (*authCookie != '\0') { if (useLaunchdSocket == 1) { diff --git a/nxcompshad/src/X11.cpp b/nxcompshad/src/X11.cpp index 3031bde37..8c5dbd5f6 100644 --- a/nxcompshad/src/X11.cpp +++ b/nxcompshad/src/X11.cpp @@ -363,7 +363,7 @@ void Poller::shmInit(void) shminfo_ -> shmaddr = (char *)shmat(shminfo_ -> shmid, 0, 0); - if (shminfo_ -> shmaddr < 0) + if (shminfo_ -> shmaddr < (void *)0) { logWarning("Poller::shmInit", "Couldn't attach to shm segment."); } |