summaryrefslogtreecommitdiff
path: root/shell/Library_macbe.mk
blob: 091b6d43a15a15cfdf9d637d84b9e87715d69637 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# -*- 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,macbe1))

$(eval $(call gb_Library_use_external,macbe1,boost_headers))

$(eval $(call gb_Library_use_sdk_api,macbe1))

$(eval $(call gb_Library_use_system_darwin_frameworks,macbe1,\
	Cocoa \
	SystemConfiguration \
))

$(eval $(call gb_Library_use_libraries,macbe1,\
	cppu \
	cppuhelper \
	sal \
))

$(eval $(call gb_Library_set_componentfile,macbe1,shell/source/backends/macbe/macbe1,services))

$(eval $(call gb_Library_add_objcxxobjects,macbe1,\
    shell/source/backends/macbe/macbackend \
))

# vim: set shiftwidth=4 tabstop=4 noexpandtab:
re/commit/?h=libreoffice-5-1-2&id=c964700d16d99d1569373a1eb9a1352fb3512915'>Related: tdf#128610 Avoid use-after-freeMike Kaganski Creating SvMemoryStream from string makes it non-owning, i.e. pointing to the string's memory. So the string must outlive the stream. Since commit 64bc8b45b5c23efc5fe57585a69aa4263aaf4e83 Date Wed Jul 08 12:31:43 2015 +0000 i#107734 Support for Math Input Panel in Windows 7 Was only working by chance, when destructor didn't clean the memory (e.g., in optimized release builds) and the released memory hasn't been reused yet. Change-Id: I2e0c195de7bd2aff2889a94ef0f2eb084411933f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131373 Tested-by: Mike Kaganski <mike.kaganski@collabora.com> Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>