summaryrefslogtreecommitdiffstats
path: root/vncviewer/parameters.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vncviewer/parameters.cxx')
-rw-r--r--vncviewer/parameters.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/vncviewer/parameters.cxx b/vncviewer/parameters.cxx
index 7cce1cd7..9a9b9fd7 100644
--- a/vncviewer/parameters.cxx
+++ b/vncviewer/parameters.cxx
@@ -122,10 +122,12 @@ BoolParameter acceptClipboard("AcceptClipboard",
true);
BoolParameter sendClipboard("SendClipboard",
"Send clipboard changes to the server", true);
+#if !defined(WIN32) && !defined(__APPLE__)
BoolParameter sendPrimary("SendPrimary",
"Send the primary selection and cut buffer to the "
"server as well as the clipboard selection",
true);
+#endif
StringParameter menuKey("MenuKey", "The key which brings up the popup menu",
"F8");
@@ -165,7 +167,9 @@ static VoidParameter* parameterArray[] = {
&shared,
&acceptClipboard,
&sendClipboard,
+#if !defined(WIN32) && !defined(__APPLE__)
&sendPrimary,
+#endif
&menuKey,
&fullscreenSystemKeys
};