diff options
author | 2025-01-15 20:16:16 +0000 | |
---|---|---|
committer | 2025-01-15 20:18:32 +0000 | |
commit | 12dd10611f2d246218a0aa181b5580160782d996 (patch) | |
tree | 8f56f0ae3680d75a43f38efe3fc0efd64287799f /dev-libs | |
parent | media-plugins/gst-plugins-neon: remove outdated <=net-libs/neon-0.33.99 limit (diff) | |
download | gentoo-12dd10611f2d246218a0aa181b5580160782d996.tar.gz gentoo-12dd10611f2d246218a0aa181b5580160782d996.tar.bz2 gentoo-12dd10611f2d246218a0aa181b5580160782d996.zip |
dev-libs/libstrophe: build w/ -std=gnu17
Closes: https://bugs.gentoo.org/944913
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libstrophe/libstrophe-0.13.1.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dev-libs/libstrophe/libstrophe-0.13.1.ebuild b/dev-libs/libstrophe/libstrophe-0.13.1.ebuild index 23a0f02893f7..87c2bbe4a43f 100644 --- a/dev-libs/libstrophe/libstrophe-0.13.1.ebuild +++ b/dev-libs/libstrophe/libstrophe-0.13.1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit autotools +inherit autotools flag-o-matic DESCRIPTION="A simple, lightweight C library for writing XMPP clients" HOMEPAGE="https://strophe.im/libstrophe/" @@ -38,6 +38,8 @@ src_prepare() { } src_configure() { + # bug #944913 + append-cflags -std=gnu17 local myeconf=( --enable-tls $(use_with !expat libxml2) |