office-gobmx/ucb/Library_ucpdav1.mk
Michael Stahl 023ebf1789 ucb: remove --with-webdav=neon
Remove code in ucb/source/ucp/webdav-neon, and now unused external
neon.

The --with-webdav=no option is retained for now.

Change-Id: I4ce429587e3991fa82009da2f8e4a068abe36435
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126839
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2021-12-15 15:24:52 +01:00

74 lines
1.9 KiB
Makefile

# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
$(eval $(call gb_Library_Library,ucpdav1))
$(eval $(call gb_Library_use_sdk_api,ucpdav1))
$(eval $(call gb_Library_set_include,ucpdav1,\
-I$(SRCDIR)/ucb/source/ucp/inc \
$$(INCLUDE) \
))
$(eval $(call gb_Library_use_libraries,ucpdav1,\
comphelper \
cppu \
cppuhelper \
sal \
salhelper \
ucbhelper \
tl \
))
$(eval $(call gb_Library_set_componentfile,ucpdav1,ucb/source/ucp/webdav-curl/ucpdav1,services))
$(eval $(call gb_Library_use_externals,ucpdav1,\
curl \
))
$(eval $(call gb_Library_use_custom_headers,ucpdav1,\
officecfg/registry \
))
$(eval $(call gb_Library_add_exception_objects,ucpdav1,\
ucb/source/ucp/webdav-curl/ContentProperties \
ucb/source/ucp/webdav-curl/CurlSession \
ucb/source/ucp/webdav-curl/CurlUri \
ucb/source/ucp/webdav-curl/DAVProperties \
ucb/source/ucp/webdav-curl/DAVResourceAccess \
ucb/source/ucp/webdav-curl/DAVSessionFactory \
ucb/source/ucp/webdav-curl/DAVTypes \
ucb/source/ucp/webdav-curl/DateTimeHelper \
ucb/source/ucp/webdav-curl/PropfindCache \
ucb/source/ucp/webdav-curl/SerfLockStore \
ucb/source/ucp/webdav-curl/UCBDeadPropertyValue \
ucb/source/ucp/webdav-curl/webdavcontent \
ucb/source/ucp/webdav-curl/webdavcontentcaps \
ucb/source/ucp/webdav-curl/webdavdatasupplier \
ucb/source/ucp/webdav-curl/webdavprovider \
ucb/source/ucp/webdav-curl/webdavresponseparser \
ucb/source/ucp/webdav-curl/webdavresultset \
))
ifeq ($(OS),WNT)
$(eval $(call gb_Library_use_system_win32_libs,ucpdav1,\
ws2_32 \
))
endif
ifeq ($(OS),SOLARIS)
$(eval $(call gb_Library_add_libs,ucpdav1,\
-ldl \
-lnsl \
-lsocket \
))
endif
# vim: set noet sw=4 ts=4: