diff -urN libreoffice-4.4.3.2-orig/Repository.mk libreoffice-4.4.3.2/Repository.mk
--- libreoffice-4.4.3.2-orig/Repository.mk	2015-04-29 06:09:05 +0900
+++ libreoffice-4.4.3.2/Repository.mk	2015-06-01 18:33:13 +0900
@@ -441,7 +441,7 @@
 	$(if $(ENABLE_TELEPATHY),tubes) \
 	ucpexpand1 \
 	ucpext \
-	ucpcmis1 \
+	$(if $(ENABLE_CMIS),ucpcmis1) \
 	ucptdoc1 \
 	unordf \
 	unoxml \
diff -urN libreoffice-4.4.3.2-orig/configure.ac libreoffice-4.4.3.2/configure.ac
--- libreoffice-4.4.3.2-orig/configure.ac	2015-04-29 06:09:05 +0900
+++ libreoffice-4.4.3.2/configure.ac	2015-06-01 18:34:24 +0900
@@ -1430,6 +1430,11 @@
     AS_HELP_STRING([--disable-collada],
         [Disable collada support (Rendering 3D models stored in *.dae and *.kmz format).]))
 
+AC_ARG_ENABLE(cmis,
+    AS_HELP_STRING([--disable-cmis],
+        [Don't include CMIS support.]),,
+    [enable_cmis="yes"])
+
 dnl ===================================================================
 dnl Optional Packages (--with/without-)
 dnl ===================================================================
@@ -7533,7 +7538,7 @@
 dnl Check for system libcmis
 dnl ===================================================================
 # libcmis requires curl and we can't build curl for iOS
-if test $_os != iOS; then
+if test "$enable_cmis" != "no" -a $_os != iOS; then
     libo_CHECK_SYSTEM_MODULE([libcmis],[CMIS],[libcmis-0.5 >= 0.5.0])
     ENABLE_CMIS=TRUE
 else
