summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhasufell <julian.ospald@googlemail.com>2013-01-28 17:08:34 +0100
committerhasufell <julian.ospald@googlemail.com>2013-01-28 17:08:34 +0100
commit370fc4599795a4a67cd69625ad83715e4e360046 (patch)
treefc02b3a1e2f825093216a4a9d90098324d4b0950
parent56a35506b1f65bd36e4f5b30054b348eea79f515 (diff)
downloadtdebase-370fc459.tar.gz
tdebase-370fc459.zip
hide disabled features from help output
-rw-r--r--compton.c19
1 files changed, 14 insertions, 5 deletions
diff --git a/compton.c b/compton.c
index 814bf4a3b..f93b950e9 100644
--- a/compton.c
+++ b/compton.c
@@ -4036,13 +4036,17 @@ usage(void) {
" Specify refresh rate of the screen. If not specified or 0, compton\n"
" will try detecting this with X RandR extension.\n"
"--vsync vsync-method\n"
- " Set VSync method. There are 2 VSync methods currently available:\n"
+ " Set VSync method. There are up to 2 VSync methods currently available\n"
+ " depending on your compile time settings:\n"
" none = No VSync\n"
+#ifdef CONFIG_VSYNC_DRM
" drm = VSync with DRM_IOCTL_WAIT_VBLANK. May only work on some\n"
" drivers. Experimental.\n"
+#endif
+#ifdef CONFIG_VSYNC_OPENGL
" opengl = Try to VSync with SGI_swap_control OpenGL extension. Only\n"
" work on some drivers. Experimental.\n"
- " (Note some VSync methods may not be enabled at compile time.)\n"
+#endif
"--alpha-step val\n"
" Step for pregenerating alpha pictures. 0.01 - 1.0. Defaults to\n"
" 0.03.\n"
@@ -4093,9 +4097,11 @@ usage(void) {
"--invert-color-include condition\n"
" Specify a list of conditions of windows that should be painted with\n"
" inverted color. Resource-hogging, and is not well tested.\n"
+#ifdef CONFIG_DBUS
"--dbus\n"
" Enable remote control via D-Bus. See the D-BUS API section in the\n"
" man page for more details.\n"
+#endif
"\n"
"Format of a condition:\n"
"\n"
@@ -4106,9 +4112,12 @@ usage(void) {
" (window role).\n"
"\n"
" <type> is one of \"e\" (exact match), \"a\" (match anywhere),\n"
- " \"s\" (match from start), \"w\" (wildcard), and \"p\" (PCRE\n"
- " regular expressions, if compiled with the support).\n"
- "\n"
+ " \"s\" (match from start), \"w\" (wildcard)"
+#ifdef CONFIG_REGEX_PCRE
+ " and \"p\" (PCRE\n"
+ " regular expressions)."
+#endif
+ "\n\n"
" <flags> could be a series of flags. Currently the only defined\n"
" flag is \"i\" (ignore case).\n"
"\n"