diff options
-rw-r--r-- | cli/src/Makefile.am | 3 | ||||
-rw-r--r-- | cli/src/cli-cmd-volume.c | 3 | ||||
-rw-r--r-- | configure.ac | 6 |
3 files changed, 8 insertions, 4 deletions
diff --git a/cli/src/Makefile.am b/cli/src/Makefile.am index f2a03030f..2847f5d78 100644 --- a/cli/src/Makefile.am +++ b/cli/src/Makefile.am @@ -16,7 +16,8 @@ AM_CFLAGS = -fPIC -Wall -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D$(GF_HOST_OS)\ -I$(top_srcdir)/rpc/xdr/src\ -DDATADIR=\"$(localstatedir)\" \ -DCONFDIR=\"$(sysconfdir)/glusterfs\" $(GF_GLUSTERFS_CFLAGS)\ - -DGSYNCD_PREFIX=\"$(libexecdir)\" + -DGSYNCD_PREFIX=\"$(libexecdir)\"\ + -DSYNCDAEMON_COMPILE=$(SYNCDAEMON_COMPILE) CLEANFILES = diff --git a/cli/src/cli-cmd-volume.c b/cli/src/cli-cmd-volume.c index 5039fa2dd..9e93d4e97 100644 --- a/cli/src/cli-cmd-volume.c +++ b/cli/src/cli-cmd-volume.c @@ -1002,10 +1002,11 @@ struct cli_cmd volume_cmds[] = { cli_cmd_volume_reset_cbk, "reset all the reconfigured options"}, +#if (SYNCDAEMON_COMPILE) {"volume gsync <start|stop|configure> <MASTER> <SLAVE> [options]", cli_cmd_volume_gsync_set_cbk, "Geo-sync operations"}, - +#endif { NULL, NULL, NULL } }; diff --git a/configure.ac b/configure.ac index 1a261a240..d2f686f1a 100644 --- a/configure.ac +++ b/configure.ac @@ -296,9 +296,11 @@ case $host_os in enable_georeplication=no ;; esac - +SYNCDAEMON_COMPILE=0 if test "x$enable_georeplication" != "xno"; then SYNCDAEMON_SUBDIR=utils + SYNCDAEMON_COMPILE=1 + BUILD_SYNCDAEMON="yes" AM_PATH_PYTHON([2.4]) echo -n "checking if python is python 2.x... " @@ -316,7 +318,7 @@ if test "x$enable_georeplication" != "xno"; then AC_MSG_ERROR([python does not have ctypes support]) fi fi - +AC_SUBST(SYNCDAEMON_COMPILE) AC_SUBST(SYNCDAEMON_SUBDIR) # end SYNCDAEMON section |