summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@suse.com>2013-04-24 14:52:46 +0100
committerMichael Meeks <michael.meeks@suse.com>2013-04-24 16:21:40 +0100
commitcb33ae88e000fb6c662ecf31a621a73223dfd081 (patch)
tree1a45217a3a461ed2e9d757fe44c15c1bb5a91e8a /ucb
parent15bbafaaed52182e80f1a24d716a2d181cdc0e17 (diff)
extend license filtering, and add fallback-checks.
Change-Id: Ia1ec3564326cf898d756c231a64a54db8698bf20
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav-neon/ContentProperties.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/DAVAuthListener.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/DAVAuthListenerImpl.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/DAVException.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/DAVProperties.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/DAVRequestEnvironment.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/DAVResource.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/DAVResourceAccess.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/DAVSession.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/DAVSessionFactory.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/DAVTypes.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/DateTimeHelper.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/LinkSequence.cxx2
-rw-r--r--ucb/source/ucp/webdav-neon/LockEntrySequence.cxx2
-rw-r--r--ucb/source/ucp/webdav-neon/LockSequence.cxx2
-rw-r--r--ucb/source/ucp/webdav-neon/LockSequence.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/NeonHeadRequest.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/NeonInputStream.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/NeonLockStore.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/NeonPropFindRequest.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/NeonSession.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/NeonTypes.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/NeonUri.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/PropertyMap.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/UCBDeadPropertyValue.cxx2
-rw-r--r--ucb/source/ucp/webdav-neon/webdavcontent.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/webdavdatasupplier.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/webdavprovider.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/webdavresultset.hxx1
29 files changed, 29 insertions, 4 deletions
diff --git a/ucb/source/ucp/webdav-neon/ContentProperties.hxx b/ucb/source/ucp/webdav-neon/ContentProperties.hxx
index 6022439364af..83ceafb9cdf8 100644
--- a/ucb/source/ucp/webdav-neon/ContentProperties.hxx
+++ b/ucb/source/ucp/webdav-neon/ContentProperties.hxx
@@ -29,6 +29,7 @@
#ifndef _WEBDAV_UCP_CONTENTPROPERTIES_HXX
#define _WEBDAV_UCP_CONTENTPROPERTIES_HXX
+#include <config_lgpl.h>
#include <memory>
#include <vector>
#include <boost/unordered_map.hpp>
diff --git a/ucb/source/ucp/webdav-neon/DAVAuthListener.hxx b/ucb/source/ucp/webdav-neon/DAVAuthListener.hxx
index 1d9e665280a0..4971a797ca2f 100644
--- a/ucb/source/ucp/webdav-neon/DAVAuthListener.hxx
+++ b/ucb/source/ucp/webdav-neon/DAVAuthListener.hxx
@@ -28,6 +28,7 @@
#ifndef _DAVAUTHLISTENER_HXX_
#define _DAVAUTHLISTENER_HXX_
+#include <config_lgpl.h>
#include <salhelper/simplereferenceobject.hxx>
#include <rtl/ustring.hxx>
diff --git a/ucb/source/ucp/webdav-neon/DAVAuthListenerImpl.hxx b/ucb/source/ucp/webdav-neon/DAVAuthListenerImpl.hxx
index 7428c358ebd5..a41b64fb1766 100644
--- a/ucb/source/ucp/webdav-neon/DAVAuthListenerImpl.hxx
+++ b/ucb/source/ucp/webdav-neon/DAVAuthListenerImpl.hxx
@@ -29,6 +29,7 @@
#ifndef _DAVAUTHLISTENERIMPL_HXX_
#define _DAVAUTHLISTENERIMPL_HXX_
+#include <config_lgpl.h>
#include "DAVAuthListener.hxx"
diff --git a/ucb/source/ucp/webdav-neon/DAVException.hxx b/ucb/source/ucp/webdav-neon/DAVException.hxx
index 4c3ab54bc930..4f33de4a7db3 100644
--- a/ucb/source/ucp/webdav-neon/DAVException.hxx
+++ b/ucb/source/ucp/webdav-neon/DAVException.hxx
@@ -29,6 +29,7 @@
#ifndef _DAVEXCEPTION_HXX_
#define _DAVEXCEPTION_HXX_
+#include <config_lgpl.h>
#include <rtl/ustring.hxx>
namespace webdav_ucp
diff --git a/ucb/source/ucp/webdav-neon/DAVProperties.hxx b/ucb/source/ucp/webdav-neon/DAVProperties.hxx
index dbd967feaf4d..5e8d219b2815 100644
--- a/ucb/source/ucp/webdav-neon/DAVProperties.hxx
+++ b/ucb/source/ucp/webdav-neon/DAVProperties.hxx
@@ -28,6 +28,7 @@
#ifndef _DAVPROPERTIES_HXX_
#define _DAVPROPERTIES_HXX_
+#include <config_lgpl.h>
#include <rtl/ustring.hxx>
#include "NeonTypes.hxx"
diff --git a/ucb/source/ucp/webdav-neon/DAVRequestEnvironment.hxx b/ucb/source/ucp/webdav-neon/DAVRequestEnvironment.hxx
index 3c435bab51c9..72a18b3a84fe 100644
--- a/ucb/source/ucp/webdav-neon/DAVRequestEnvironment.hxx
+++ b/ucb/source/ucp/webdav-neon/DAVRequestEnvironment.hxx
@@ -28,6 +28,7 @@
#ifndef _DAVREQUESTENVIRONMENT_HXX_
#define _DAVREQUESTENVIRONMENT_HXX_
+#include <config_lgpl.h>
#include <vector>
#include <rtl/ref.hxx>
#include "DAVAuthListener.hxx"
diff --git a/ucb/source/ucp/webdav-neon/DAVResource.hxx b/ucb/source/ucp/webdav-neon/DAVResource.hxx
index eeba4efa5dce..d08039331a80 100644
--- a/ucb/source/ucp/webdav-neon/DAVResource.hxx
+++ b/ucb/source/ucp/webdav-neon/DAVResource.hxx
@@ -29,6 +29,7 @@
#ifndef _DAVRESOURCE_HXX_
#define _DAVRESOURCE_HXX_
+#include <config_lgpl.h>
#include <vector>
#include "rtl/ustring.hxx"
diff --git a/ucb/source/ucp/webdav-neon/DAVResourceAccess.hxx b/ucb/source/ucp/webdav-neon/DAVResourceAccess.hxx
index b4bf18ef53e2..c9c0de53151d 100644
--- a/ucb/source/ucp/webdav-neon/DAVResourceAccess.hxx
+++ b/ucb/source/ucp/webdav-neon/DAVResourceAccess.hxx
@@ -29,6 +29,7 @@
#ifndef _DAVRESOURCEACCESS_HXX_
#define _DAVRESOURCEACCESS_HXX_
+#include <config_lgpl.h>
#include <vector>
#include <rtl/ustring.hxx>
#include <rtl/ref.hxx>
diff --git a/ucb/source/ucp/webdav-neon/DAVSession.hxx b/ucb/source/ucp/webdav-neon/DAVSession.hxx
index b5dad245b356..72e0197db7dd 100644
--- a/ucb/source/ucp/webdav-neon/DAVSession.hxx
+++ b/ucb/source/ucp/webdav-neon/DAVSession.hxx
@@ -29,6 +29,7 @@
#ifndef _DAVSESSION_HXX_
#define _DAVSESSION_HXX_
+#include <config_lgpl.h>
#include <memory>
#include <rtl/ustring.hxx>
#include <com/sun/star/io/XInputStream.hpp>
diff --git a/ucb/source/ucp/webdav-neon/DAVSessionFactory.hxx b/ucb/source/ucp/webdav-neon/DAVSessionFactory.hxx
index b45ce9ffcde3..665cfa29209b 100644
--- a/ucb/source/ucp/webdav-neon/DAVSessionFactory.hxx
+++ b/ucb/source/ucp/webdav-neon/DAVSessionFactory.hxx
@@ -31,6 +31,7 @@
#ifdef min
#undef min // GNU libstdc++ <memory> includes <limit> which defines methods called min...
#endif
+#include <config_lgpl.h>
#include <map>
#include <memory>
#include <osl/mutex.hxx>
diff --git a/ucb/source/ucp/webdav-neon/DAVTypes.hxx b/ucb/source/ucp/webdav-neon/DAVTypes.hxx
index b3da92c0a533..94483adb4452 100644
--- a/ucb/source/ucp/webdav-neon/DAVTypes.hxx
+++ b/ucb/source/ucp/webdav-neon/DAVTypes.hxx
@@ -29,6 +29,7 @@
#ifndef _DAVTYPES_HXX_
#define _DAVTYPES_HXX_
+#include <config_lgpl.h>
#include <rtl/ustring.hxx>
#include <com/sun/star/uno/Any.hxx>
diff --git a/ucb/source/ucp/webdav-neon/DateTimeHelper.hxx b/ucb/source/ucp/webdav-neon/DateTimeHelper.hxx
index b457bd7c4904..95035206cf27 100644
--- a/ucb/source/ucp/webdav-neon/DateTimeHelper.hxx
+++ b/ucb/source/ucp/webdav-neon/DateTimeHelper.hxx
@@ -29,6 +29,7 @@
#ifndef _WEBDAV_DATETIME_HELPER_HXX
#define _WEBDAV_DATETIME_HELPER_HXX
+#include <config_lgpl.h>
#include <sal/types.h>
namespace com { namespace sun { namespace star { namespace util {
diff --git a/ucb/source/ucp/webdav-neon/LinkSequence.cxx b/ucb/source/ucp/webdav-neon/LinkSequence.cxx
index 32fafb4bc7b9..337d662e6d86 100644
--- a/ucb/source/ucp/webdav-neon/LinkSequence.cxx
+++ b/ucb/source/ucp/webdav-neon/LinkSequence.cxx
@@ -26,7 +26,7 @@
*
************************************************************************/
-
+#include <config_lgpl.h>
#include <string.h>
#include <ne_xml.h>
diff --git a/ucb/source/ucp/webdav-neon/LockEntrySequence.cxx b/ucb/source/ucp/webdav-neon/LockEntrySequence.cxx
index 746ca58bd8f2..5875913aae0a 100644
--- a/ucb/source/ucp/webdav-neon/LockEntrySequence.cxx
+++ b/ucb/source/ucp/webdav-neon/LockEntrySequence.cxx
@@ -26,7 +26,7 @@
*
************************************************************************/
-
+#include <config_lgpl.h>
#include <string.h>
#include <ne_xml.h>
#include "LockEntrySequence.hxx"
diff --git a/ucb/source/ucp/webdav-neon/LockSequence.cxx b/ucb/source/ucp/webdav-neon/LockSequence.cxx
index 06d501fb0c38..93c60fc613be 100644
--- a/ucb/source/ucp/webdav-neon/LockSequence.cxx
+++ b/ucb/source/ucp/webdav-neon/LockSequence.cxx
@@ -26,7 +26,7 @@
*
************************************************************************/
-
+#include <config_lgpl.h>
#include <string.h>
#include <ne_xml.h>
#include "LockSequence.hxx"
diff --git a/ucb/source/ucp/webdav-neon/LockSequence.hxx b/ucb/source/ucp/webdav-neon/LockSequence.hxx
index fc9db6679c9f..a0083b418025 100644
--- a/ucb/source/ucp/webdav-neon/LockSequence.hxx
+++ b/ucb/source/ucp/webdav-neon/LockSequence.hxx
@@ -29,6 +29,7 @@
#ifndef _LOCKSEQUENCE_HXX_
#define _LOCKSEQUENCE_HXX_
+#include <config_lgpl.h>
#include <rtl/string.hxx>
#include <com/sun/star/uno/Sequence.hxx>
#include <com/sun/star/ucb/Lock.hpp>
diff --git a/ucb/source/ucp/webdav-neon/NeonHeadRequest.hxx b/ucb/source/ucp/webdav-neon/NeonHeadRequest.hxx
index a328418d4db5..bb1a495ed47f 100644
--- a/ucb/source/ucp/webdav-neon/NeonHeadRequest.hxx
+++ b/ucb/source/ucp/webdav-neon/NeonHeadRequest.hxx
@@ -29,6 +29,7 @@
#ifndef _NEONHEADREQUEST_HXX_
#define _NEONHEADREQUEST_HXX_
+#include <config_lgpl.h>
#include <vector>
#include "NeonTypes.hxx"
#include "DAVResource.hxx"
diff --git a/ucb/source/ucp/webdav-neon/NeonInputStream.hxx b/ucb/source/ucp/webdav-neon/NeonInputStream.hxx
index 83ce42e158b2..558821e6dc5c 100644
--- a/ucb/source/ucp/webdav-neon/NeonInputStream.hxx
+++ b/ucb/source/ucp/webdav-neon/NeonInputStream.hxx
@@ -28,6 +28,7 @@
#ifndef _NEONINPUTSTREAM_HXX_
#define _NEONINPUTSTREAM_HXX_
+#include <config_lgpl.h>
#include <sal/types.h>
#include <rtl/ustring.hxx>
#include <cppuhelper/weak.hxx>
diff --git a/ucb/source/ucp/webdav-neon/NeonLockStore.hxx b/ucb/source/ucp/webdav-neon/NeonLockStore.hxx
index c6bd4f5e48a4..dd9b18599505 100644
--- a/ucb/source/ucp/webdav-neon/NeonLockStore.hxx
+++ b/ucb/source/ucp/webdav-neon/NeonLockStore.hxx
@@ -28,6 +28,7 @@
#ifndef INCLUDED_NEONLOCKSTORE_HXX
#define INCLUDED_NEONLOCKSTORE_HXX
+#include <config_lgpl.h>
#include <map>
#include "warnings_guard_ne_locks.h"
#include "osl/mutex.hxx"
diff --git a/ucb/source/ucp/webdav-neon/NeonPropFindRequest.hxx b/ucb/source/ucp/webdav-neon/NeonPropFindRequest.hxx
index fd714246c9db..6b078f246d90 100644
--- a/ucb/source/ucp/webdav-neon/NeonPropFindRequest.hxx
+++ b/ucb/source/ucp/webdav-neon/NeonPropFindRequest.hxx
@@ -29,6 +29,7 @@
#ifndef _NEONPROPFINDREQUEST_HXX_
#define _NEONPROPFINDREQUEST_HXX_
+#include <config_lgpl.h>
#include <vector>
#include <rtl/ustring.hxx>
#include "NeonTypes.hxx"
diff --git a/ucb/source/ucp/webdav-neon/NeonSession.hxx b/ucb/source/ucp/webdav-neon/NeonSession.hxx
index b01ab990711f..f62ec005b238 100644
--- a/ucb/source/ucp/webdav-neon/NeonSession.hxx
+++ b/ucb/source/ucp/webdav-neon/NeonSession.hxx
@@ -29,6 +29,7 @@
#ifndef _NEONSESSION_HXX_
#define _NEONSESSION_HXX_
+#include <config_lgpl.h>
#include <vector>
#include <osl/mutex.hxx>
#include "DAVSession.hxx"
diff --git a/ucb/source/ucp/webdav-neon/NeonTypes.hxx b/ucb/source/ucp/webdav-neon/NeonTypes.hxx
index d6c27417439c..926529f74a3a 100644
--- a/ucb/source/ucp/webdav-neon/NeonTypes.hxx
+++ b/ucb/source/ucp/webdav-neon/NeonTypes.hxx
@@ -29,6 +29,7 @@
#ifndef _NEONTYPES_HXX_
#define _NEONTYPES_HXX_
+#include <config_lgpl.h>
#include <ne_session.h>
#include <ne_utils.h>
#include <ne_basic.h>
diff --git a/ucb/source/ucp/webdav-neon/NeonUri.hxx b/ucb/source/ucp/webdav-neon/NeonUri.hxx
index 0650a70e45e5..2846440e303b 100644
--- a/ucb/source/ucp/webdav-neon/NeonUri.hxx
+++ b/ucb/source/ucp/webdav-neon/NeonUri.hxx
@@ -28,6 +28,7 @@
#ifndef _NEONURI_HXX_
#define _NEONURI_HXX_
+#include <config_lgpl.h>
#include <ne_uri.h>
#include <rtl/ustring.hxx>
#include <DAVException.hxx>
diff --git a/ucb/source/ucp/webdav-neon/PropertyMap.hxx b/ucb/source/ucp/webdav-neon/PropertyMap.hxx
index ca1cb03d8968..d2743732c04c 100644
--- a/ucb/source/ucp/webdav-neon/PropertyMap.hxx
+++ b/ucb/source/ucp/webdav-neon/PropertyMap.hxx
@@ -29,6 +29,7 @@
#ifndef _WEBDAV_UCP_PROPERTYMAP_HXX
#define _WEBDAV_UCP_PROPERTYMAP_HXX
+#include <config_lgpl.h>
#include <boost/unordered_set.hpp>
#include <com/sun/star/beans/Property.hpp>
diff --git a/ucb/source/ucp/webdav-neon/UCBDeadPropertyValue.cxx b/ucb/source/ucp/webdav-neon/UCBDeadPropertyValue.cxx
index 8a7cdec14cc7..49124127ba12 100644
--- a/ucb/source/ucp/webdav-neon/UCBDeadPropertyValue.cxx
+++ b/ucb/source/ucp/webdav-neon/UCBDeadPropertyValue.cxx
@@ -26,7 +26,7 @@
*
************************************************************************/
-
+#include <config_lgpl.h>
#include <string.h>
#include <ne_xml.h>
#include <osl/diagnose.h>
diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.hxx b/ucb/source/ucp/webdav-neon/webdavcontent.hxx
index ca97b6d01cbe..74140fd7f179 100644
--- a/ucb/source/ucp/webdav-neon/webdavcontent.hxx
+++ b/ucb/source/ucp/webdav-neon/webdavcontent.hxx
@@ -29,6 +29,7 @@
#ifndef _WEBDAV_UCP_CONTENT_HXX
#define _WEBDAV_UCP_CONTENT_HXX
+#include <config_lgpl.h>
#include <memory>
#include <list>
#include <rtl/ref.hxx>
diff --git a/ucb/source/ucp/webdav-neon/webdavdatasupplier.hxx b/ucb/source/ucp/webdav-neon/webdavdatasupplier.hxx
index 6d9be6b8056b..a48b6b6c606c 100644
--- a/ucb/source/ucp/webdav-neon/webdavdatasupplier.hxx
+++ b/ucb/source/ucp/webdav-neon/webdavdatasupplier.hxx
@@ -29,6 +29,7 @@
#ifndef WEBDAV_UCP_DATASUPPLIER_HXX
#define WEBDAV_UCP_DATASUPPLIER_HXX
+#include <config_lgpl.h>
#include <vector>
#include <boost/scoped_ptr.hpp>
#include <rtl/ref.hxx>
diff --git a/ucb/source/ucp/webdav-neon/webdavprovider.hxx b/ucb/source/ucp/webdav-neon/webdavprovider.hxx
index 1e4b273c8770..afd8ee78df4d 100644
--- a/ucb/source/ucp/webdav-neon/webdavprovider.hxx
+++ b/ucb/source/ucp/webdav-neon/webdavprovider.hxx
@@ -29,6 +29,7 @@
#ifndef _WEBDAV_UCP_PROVIDER_HXX
#define _WEBDAV_UCP_PROVIDER_HXX
+#include <config_lgpl.h>
#include <rtl/ref.hxx>
#include <com/sun/star/beans/Property.hpp>
#include "DAVSessionFactory.hxx"
diff --git a/ucb/source/ucp/webdav-neon/webdavresultset.hxx b/ucb/source/ucp/webdav-neon/webdavresultset.hxx
index c27cc5e61d14..d3dbf90cd03d 100644
--- a/ucb/source/ucp/webdav-neon/webdavresultset.hxx
+++ b/ucb/source/ucp/webdav-neon/webdavresultset.hxx
@@ -29,6 +29,7 @@
#ifndef _WEBDAV_UCP_RESULTSET_HXX
#define _WEBDAV_UCP_RESULTSET_HXX
+#include <config_lgpl.h>
#include <rtl/ref.hxx>
#include <ucbhelper/resultsethelper.hxx>
#include "webdavcontent.hxx"