diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2013-02-17 13:40:53 +0100 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2013-02-17 13:44:51 +0100 |
commit | 0e6fdbd79f196aaa06bf3de31123f6a39fe0ec6e (patch) | |
tree | 235878cfa9c64995dc71aeff9b84f958b0eaac05 /configure.ac | |
parent | c13c500630746ba035e0b48c0cbd276aa436db2b (diff) |
confgure.ac: dbgutil and system-libcmis incompatible
libcmis exposes STL containers in its API:
workdir/*/CxxObject/ucb/source/ucp/cmis/cmis_content.o: In function `cmis::Content::setCmisProperty(std::string, std::string, com::sun::star::uno::Reference<com::sun::star::ucb::XCommandEnvironment> const&)':
ucb/source/ucp/cmis/cmis_content.cxx:1756: undefined reference to `libcmis::Property::Property(boost::shared_ptr<libcmis::PropertyType>, std::__debug::vector<std::string, std::allocator<std::string> >)'
ucb/source/ucp/cmis/cmis_content.cxx:1762: undefined reference to `libcmis::Property::setValues(std::__debug::vector<std::string, std::allocator<std::string> >)'
Change-Id: Ife845ca5c6cedcbe57e5ce7fbdd8cc641dffae52
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 728100489b34..cc801f197674 100644 --- a/configure.ac +++ b/configure.ac @@ -3384,6 +3384,11 @@ if test -n "$enable_dbgutil" -a "$enable_dbgutil" != "no"; then else with_system_orcus=no fi + if test "$with_system_libcmis" = "yes"; then + AC_MSG_ERROR([--with-system-libcmis conflicts with --enable-dbgutil]) + else + with_system_libcmis=no + fi else ENABLE_DBGUTIL="" # PRODUCT is old concept, still used by build.pl . |