1. 16 Dec, 2017 3 commits
  2. 05 Dec, 2017 3 commits
  3. 25 Aug, 2017 3 commits
  4. 26 Jul, 2017 1 commit
  5. 13 Jul, 2017 1 commit
  6. 12 Jul, 2017 1 commit
  7. 27 Jun, 2017 1 commit
  8. 15 Jun, 2017 1 commit
  9. 05 Jun, 2017 1 commit
  10. 13 Apr, 2017 3 commits
  11. 10 Apr, 2017 2 commits
  12. 05 Apr, 2017 1 commit
  13. 01 Mar, 2017 5 commits
  14. 26 Feb, 2017 1 commit
    • Mike Gabriel's avatar
      Xserver/os/oscolor.c: Follow X.org in dropping the rgb.txt file entirely.… · f6a11402
      Mike Gabriel authored
      Xserver/os/oscolor.c: Follow X.org in dropping the rgb.txt file entirely. Content of that file is now hard-coded.
      
       Adopting an exact copy of os/oscolor.c from X.org leads to this compiler warning:
      
       ```
       oscolor.c:844:1: warning: string length ‘7614’ is greater than the length ‘4095’ ISO C99 compilers are required to support [-Woverlength-strings]
       };
       ^
       ```
      
       This will be address later in coordination with X.org.
      
       Note: there is a tiny change in oscolor.c as we ship it. The original X.org file includes <X11/keysym.h> which seems
       unneeded. We drop that one line from oscolor.c.
      
       Fixes ArcticaProject/nx-libs#259.
      f6a11402
  15. 09 Feb, 2017 4 commits
  16. 03 Feb, 2017 1 commit
  17. 11 Jan, 2017 1 commit
  18. 15 Nov, 2016 1 commit
  19. 05 Nov, 2016 1 commit
    • Mihai Moldovan's avatar
      Makefile: fix up a9b145d4. · 7b79e8d8
      Mihai Moldovan authored
      `readlink` returns nothing for non-symlinks. Careful investigation of the build
      environment revealed that libNX_X11.so.6.2 was no symlink to begin with - so
      the whole copy operation failed.
      
      Pro-actively fix the call though, in case we ever encounter a symlink there.
      7b79e8d8
  20. 02 Nov, 2016 1 commit
  21. 20 Oct, 2016 1 commit
  22. 01 Oct, 2016 1 commit
  23. 04 Jul, 2016 1 commit
    • Mike Gabriel's avatar
      libNX_X11 data files: Install libNX_X11 related data files. · 1bd2463a
      Mike Gabriel authored
        - Update XErrorDB to latest X.org version.
        - Install XErrorDB, XKeysymDB and Xcms.txt to /usr/{local/}share/nx/.
        - Assure that libNX_X11 finds those files at the
          named location.
        - Update debian/ packaging files.
        - Update nx-libs.spec packaging file.
      
      Fixes ArcticaProject/nx-libs#153
      1bd2463a
  24. 01 Jul, 2016 1 commit
    • Mike Gabriel's avatar
      Rework nxagent and nxproxy wrapper scripts. · 5934d03e
      Mike Gabriel authored
        o Install nxagent/nxproxy executables into multi-arch path.
        o Fake libNX_X11.so* as $LIBDIR/nx-X11/libX11.so*.
        o Allow injecting different $NXAPP containing the executable name.
      
        o For e.g. x2goagent this requires the following changes:
      
          - Move x2goagent symlink from /usr/lib/x2go/bin/x2goagent to
            $LIBDIR/nx/bin/x2goagent
          - Replace /usr/bin/x2goagent by a two-liner...
      
          ```
          #!/bin/sh
      
          export NXAPP=x2goagent
          nxagent
          ```
      5934d03e