b212163587
> gpgme-w32spawn.c(288,8): error: call to undeclared function 'open'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
> fd = open (trans_file, O_RDONLY);
> ^
etc. with clang-cl 15 trunk after
<7d644e1215
>
"[C11/C2x] Change the behavior of the implicit function declaration warning",
which went unnoticed so far due to the traditionally lax handling of missing
function declarations in C.
Change-Id: I805ab10d2b0aae3f8b1f46ffeda57aff2bbcef2f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133340
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
38 lines
1.7 KiB
Makefile
38 lines
1.7 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_UnpackedTarball_UnpackedTarball,gpgmepp))
|
|
|
|
$(eval $(call gb_UnpackedTarball_set_tarball,gpgmepp,$(GPGME_TARBALL)))
|
|
|
|
$(eval $(call gb_UnpackedTarball_set_patchlevel,gpgmepp,0))
|
|
|
|
# * external/gpgmepp/configure.patch: see
|
|
# <https://lists.gnu.org/archive/html/autoconf/2020-11/msg00004.html> "Fallout from
|
|
# _AC_UNDECLARED_WARNING in autoconf 2.70beta" for upstream discussion
|
|
$(eval $(call gb_UnpackedTarball_add_patches,gpgmepp, \
|
|
external/gpgmepp/find-libgpg-error-libassuan.patch \
|
|
external/gpgmepp/fix-autoconf-macros.patch \
|
|
$(if $(filter MSC,$(COM)),external/gpgmepp/w32-build-fixes.patch.1) \
|
|
$(if $(filter MSC,$(COM)),external/gpgmepp/w32-disable-docs.patch.1) \
|
|
$(if $(filter MSC,$(COM)),external/gpgmepp/w32-fix-win32-macro.patch.1) \
|
|
$(if $(filter MSC,$(COM)),external/gpgmepp/w32-fix-libtool.patch.1) \
|
|
$(if $(filter MSC,$(COM)),external/gpgmepp/w32-add-initializer.patch.1) \
|
|
external/gpgmepp/w32-build-fixes-2.patch \
|
|
$(if $(filter LINUX,$(OS)),external/gpgmepp/asan.patch) \
|
|
$(if $(filter LINUX,$(OS)),external/gpgmepp/rpath.patch) \
|
|
external/gpgmepp/gcc9.patch \
|
|
external/gpgmepp/ubsan.patch \
|
|
external/gpgmepp/c++20.patch \
|
|
external/gpgmepp/clang-cl.patch \
|
|
external/gpgmepp/configure.patch \
|
|
external/gpgmepp/gpgme.git-4b64774b6d13ffa4f59dddf947a97d61bcfa2f2e.patch.1 \
|
|
external/gpgmepp/w32-include.patch \
|
|
))
|
|
# vim: set noet sw=4 ts=4:
|