diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-01-28 11:28:38 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-01-28 11:38:09 +0100 |
commit | fc2dcc9c3092e8cc5f0b32716d5efe535d2c4f12 (patch) | |
tree | 6b0baee4b14f97d326e7215c9f7ace0478ebcd7b /debian/patches | |
parent | bb70adf75aa95c94db3b4d7df5d2c526aa012cee (diff) | |
download | nx-libs-fc2dcc9c3092e8cc5f0b32716d5efe535d2c4f12.tar.gz nx-libs-fc2dcc9c3092e8cc5f0b32716d5efe535d2c4f12.tar.bz2 nx-libs-fc2dcc9c3092e8cc5f0b32716d5efe535d2c4f12.zip |
Extend 999_nxagent_unbrand-nxagent-brand-x2goagent.full.patch. Let rgb file shipped with x2goagent supersede rgb file shipped with nxagent. FIXME: a better approach would be to decide at runtime if to use /etc/x2go/rgb or /etc/nxagent/rgb.
Diffstat (limited to 'debian/patches')
-rw-r--r-- | debian/patches/999_nxagent_unbrand-nxagent-brand-x2goagent.full.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/debian/patches/999_nxagent_unbrand-nxagent-brand-x2goagent.full.patch b/debian/patches/999_nxagent_unbrand-nxagent-brand-x2goagent.full.patch index 4b18aa552..db5997685 100644 --- a/debian/patches/999_nxagent_unbrand-nxagent-brand-x2goagent.full.patch +++ b/debian/patches/999_nxagent_unbrand-nxagent-brand-x2goagent.full.patch @@ -294,3 +294,26 @@ Last-Update: 2012-01-11 extern Window nxagentSplashWindow; +--- a/nx-X11/programs/Xserver/os/oscolor.c ++++ b/nx-X11/programs/Xserver/os/oscolor.c +@@ -53,7 +53,19 @@ + #include <sys/stat.h> + #include <unistd.h> + +-static char* nxAltRgbPaths[] = {"/etc/nxagent/rgb", "/usr/share/nx/rgb", "/usr/local/share/nx/rgb", "/usr/NX/share/rgb", "/usr/share/X11/rgb", "/etc/X11/rgb"}; ++/* FIXME: we need more intelligent code (like provided by the nxagentX2go ++ * var in hw/nxagent/Init.h) to detect our current runtime mode (running ++ * as x2goagent, running as nxagent) ++ */ ++static char* nxAltRgbPaths[] = {"/etc/x2go/rgb", \ ++ "/usr/share/x2go/rgb", \ ++ "/usr/local/share/x2go/rgb", \ ++ "/etc/nxagent/rgb", \ ++ "/usr/share/nx/rgb", \ ++ "/usr/local/share/nx/rgb", \ ++ "/usr/NX/share/rgb", \ ++ "/usr/share/X11/rgb", \ ++ "/etc/X11/rgb"}; + static char _NXRgbPath[1024]; + + #endif |