diff options
author | Cédric Bosdonnat <cedric.bosdonnat.ooo@free.fr> | 2011-10-03 14:10:10 +0200 |
---|---|---|
committer | Cédric Bosdonnat <cedric.bosdonnat.ooo@free.fr> | 2011-10-04 09:38:36 +0200 |
commit | 5bd2890a56125d391b42f34d51e2e0c57b0a80b0 (patch) | |
tree | 9546d891cc0d83f6a7e510dab6a950e10f790a6b /configure.in | |
parent | bee695a32d1bd6aad54372e3c6971b1067e35409 (diff) |
Added --disable-cmis flag for use while the feature is too unstable
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.in b/configure.in index f05a9bd42d28..2b58f7893bf7 100644 --- a/configure.in +++ b/configure.in @@ -519,6 +519,11 @@ AC_ARG_ENABLE(release-build, See http://wiki.documentfoundation.org/DevBuild]), ,) +AC_ARG_ENABLE(cmis, + AS_HELP_STRING([--disable-cmis], + [Disable CMIS experimental feature.]), +,enable_cmis=yes) + dnl =================================================================== dnl Optional Packages (--with/without-) dnl =================================================================== @@ -7026,6 +7031,12 @@ if test "$enable_cairo_canvas" = "yes" ; then fi AC_SUBST(ENABLE_CAIRO_CANVAS) +ENABLE_CMIS="FALSE" +if test "$enable_cmis" = "yes" ; then + ENABLE_CMIS="TRUE" +fi +AC_SUBST(ENABLE_CMIS) + dnl =================================================================== dnl Check whether the GStreamer libraries are available. dnl =================================================================== |