diff options
Diffstat (limited to 'cli/src/cli.c')
| -rw-r--r-- | cli/src/cli.c | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/src/cli.c b/cli/src/cli.c index 75f2ed3432c..416cb50bc37 100644 --- a/cli/src/cli.c +++ b/cli/src/cli.c @@ -294,7 +294,11 @@ cli_opt_parse (char *opt, struct cli_state *state)          }          if (strcmp (opt, "xml") == 0) { +#if (HAVE_LIB_XML)                  state->mode |= GLUSTER_MODE_XML; +#else +                cli_err ("XML output not supported. Ignoring '--xml' option"); +#endif                  return 0;          }  | 
