diff options
author | Shyam <srangana@redhat.com> | 2015-10-08 13:59:44 -0400 |
---|---|---|
committer | Jeff Darcy <jdarcy@redhat.com> | 2015-11-18 04:23:02 -0800 |
commit | 73200eaa8559c770a0ccc6e819cf791564592335 (patch) | |
tree | 4b05e7f22c6dc7dbb72b79e3b57278e05cd97f1c /configure.ac | |
parent | 23440a73bc348bbc3bb43ec397f0639ee45865fc (diff) |
core: Add experimental xlator directory
Added an experimental xlator directory under ./xlators/
The intent of this directory is presented in the README.md
that accompanies this commit.
This directory can be disabled from being compiled using,
- configure --disable-experimental
Change-Id: I047f380c91a082d111432f8bbdbd4d7bdcbaa809
Signed-off-by: Shyam <srangana@redhat.com>
Reviewed-on: http://review.gluster.org/12321
Tested-by: NetBSD Build System <jenkins@build.gluster.org>
Reviewed-by: Kaleb KEITHLEY <kkeithle@redhat.com>
Reviewed-by: Avra Sengupta <asengupt@redhat.com>
Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index f39a4cfff89..a345b88078b 100644 --- a/configure.ac +++ b/configure.ac @@ -186,6 +186,7 @@ AC_CONFIG_FILES([Makefile xlators/mgmt/Makefile xlators/mgmt/glusterd/Makefile xlators/mgmt/glusterd/src/Makefile + xlators/experimental/Makefile cli/Makefile cli/src/Makefile doc/Makefile @@ -1259,6 +1260,18 @@ AC_SUBST(UNITTEST_LDFLAGS) AC_SUBST(CFLAGS) # end enable debug section +# experimental section +AC_ARG_ENABLE([experimental], + AC_HELP_STRING([--disable-experimental], + [Disable building experimental xlators])) + +BUILD_EXPERIMENTAL="yes" +if test "x$enable_experimental" == "xno"; then + BUILD_EXPERIMENTAL="no" +fi +AM_CONDITIONAL([ENABLE_EXPERIMENTAL], [test x$BUILD_EXPERIMENTAL = xyes]) +#end experimental section + dnl libglusterfs.so uses math functions GF_LDADD="${GF_LDADD} ${MATH_LIB}" @@ -1354,4 +1367,5 @@ echo "Unit Tests : $BUILD_UNITTEST" echo "POSIX ACLs : $BUILD_POSIX_ACLS" echo "Data Classification : $BUILD_GFDB" echo "firewalld-config : $BUILD_FIREWALLD" +echo "Experimental xlators : $BUILD_EXPERIMENTAL" echo |