summaryrefslogtreecommitdiff
path: root/net-libs/ldns
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-08-20 03:04:52 -0500
committerroot <root@alpha.trunkmasters.com>2026-08-20 03:04:52 -0500
commitef28a0a09751356d6a177eab79b041f208f7d070 (patch)
tree2cfb77d786d95a3e3fa4c9e6bcfa3c137196c2d9 /net-libs/ldns
parent7b13a9274c53423047c061be2d9fc93c3728c318 (diff)
downloadbaldeagleos-repo-ef28a0a09751356d6a177eab79b041f208f7d070.tar.gz
baldeagleos-repo-ef28a0a09751356d6a177eab79b041f208f7d070.tar.xz
baldeagleos-repo-ef28a0a09751356d6a177eab79b041f208f7d070.zip
Adding metadata
Diffstat (limited to 'net-libs/ldns')
-rw-r--r--net-libs/ldns/files/ldns-1.9.0-std23-bool.patch9
1 files changed, 9 insertions, 0 deletions
diff --git a/net-libs/ldns/files/ldns-1.9.0-std23-bool.patch b/net-libs/ldns/files/ldns-1.9.0-std23-bool.patch
index 264e6f8e4709..be55db9f5e16 100644
--- a/net-libs/ldns/files/ldns-1.9.0-std23-bool.patch
+++ b/net-libs/ldns/files/ldns-1.9.0-std23-bool.patch
@@ -16,3 +16,12 @@ From: Petr Menšík <pemensik@redhat.com>
#ifndef __bool_true_false_are_defined
# ifdef HAVE_STDBOOL_H
# include <stdbool.h>
+@@ -47,6 +51,8 @@
+ # ifndef HAVE__BOOL
+ # ifdef __cplusplus
+ typedef bool _Bool;
++# elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
++/* _Bool is a built-in keyword since C99; no macro definition needed. */
+ # else
+ # define _Bool signed char
+ # endif