1. 14 Feb, 2015 33 commits
  2. 13 Feb, 2015 7 commits
    • Mike Gabriel's avatar
      nx-X11 vs. X.Org 6.9 patches for further studying / documentation · 1e5ee575
      Mike Gabriel authored
        NoMachine kept all original X.Org 6.9 files in the nx-X11 source
        tree. These files have been removed in Feb 2015 during a major
        code cleanup.
      
        For later studying we provide all diffs of the changes that
        NoMachine employed on the original X.Org X11 code tree in the
        doc/nx-X11_vs_XOrg69_patches folder.
      1e5ee575
    • Oleksandr Shneyder's avatar
      Unbrand NX Agent Startup Screen / Brand X2Go Agent Startup Screen… · 1fd8551f
      Oleksandr Shneyder authored
      Unbrand NX Agent Startup Screen / Brand X2Go Agent Startup Screen (999_nxagent_unbrand-nxagent-brand-x2goagent.full.patch).
      
        When launched with NX Agent flavour, the startup screen gets unbranded by
        this patch (the !M logo does not get shown).
      
        When launched with X2Go Agent flavour, the startup screen gets branded
        with the X2GO logo.
      1fd8551f
    • Mike Gabriel's avatar
      Fix several typos in nxcomp. · 23fb6175
      Mike Gabriel authored
        Former patch file names:
        991_fix-hr-typos.full+lite.patch
        991_fix-hr-typos.full.patch
      23fb6175
    • Mihai Moldovan's avatar
      Several fixes for building debug versions of NX (990_fix-DEBUG-and-TEST-builds.full.patch). · 6e662473
      Mihai Moldovan authored
        (1) In nx-X11/programs/Xserver/dix:
      
        Fix several compile errors when specifying -DDEBUG globally. Previous GCC
        versions were more liberal and the code thus compiled.
      
        Also initialize/reset a count variable correctly.
      
        (2) In nx-X11/programs/Xserver/hw/nxagent/Render.c:
      
        Check for pSrc->pDrawable to exist instead of having nxagent segfault when
        it does not.
      
        This enables the possibility of compiling all nxagent modules in TEST mode.
      6e662473
    • Mike Gabriel's avatar
      Detection for Mac OS X's launchd service on Mac OS X 10.10 and beyond… · a8fb7d4f
      Mike Gabriel authored
      Detection for Mac OS X's launchd service on Mac OS X 10.10 and beyond (607_nxcomp_macosx-X11-launcher-in-private-tmp.full+lite.patch).
      a8fb7d4f
    • Orion Poplawski's avatar
    • Clemens Lang's avatar
      In Types.h, don't use STL internals on libc++… · ab8d1276
      Clemens Lang authored
      In Types.h, don't use STL internals on libc++ (605_nxcomp_Types.h-dont-use-STL-internals-on-libc++.full+lite.patch).
      
        The nx-libs-lite package does not compile on OS X Mavericks because
        Apple's clang compilers now default to compiling against the libc++ STL
        rather than (their outdated copy of) libstdc++.
      
        While the compiler still allows changing that, we should not rely on
        this being possible forever.
      
        The compiler chokes in Types.h, specifically the clear() methods in
        subclasses of vectors that use implementation details of the GNU STL.
        The attached patch fixes these compilation issues by not overriding the
        clear() method when compiling against libc++, since the libc++ headers
        seem to do essentially the same as the overriden method.
      ab8d1276