Compare commits
75 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6588aa46a8 | ||
|
|
ee43c66dd2 | ||
|
|
cb36a94920 | ||
|
|
efc043ec2b | ||
|
|
13b40714b1 | ||
|
|
2868beb145 | ||
|
|
33b3474bf6 | ||
|
|
b0f0072617 | ||
|
|
ab1229d18a | ||
|
|
9f76c1bb5b | ||
|
|
a7a7e6dec7 | ||
|
|
e462d3a849 | ||
|
|
256ffce7e0 | ||
|
|
259317e431 | ||
|
|
77abc57d5b | ||
|
|
a7976041b7 | ||
|
|
edc56db186 | ||
|
|
7e6d1cd0e0 | ||
|
|
518ed05fa4 | ||
|
|
73e15e5ee9 | ||
|
|
a6c444b93b | ||
|
|
d81bc5692c | ||
|
|
0c3f03fb85 | ||
|
|
74a0297b04 | ||
|
|
2c95e4c161 | ||
|
|
1111700d3a | ||
|
|
dd92b14e1a | ||
|
|
099acdd8f9 | ||
|
|
812da47707 | ||
|
|
a69b85eb5e | ||
|
|
5a2b1a253b | ||
|
|
60e057aafe | ||
|
|
69a609119f | ||
|
|
13998e347c | ||
|
|
b81c002609 | ||
|
|
97167d0a61 | ||
|
|
b1223a99f8 | ||
|
|
66d206cc6d | ||
|
|
b20cc3495f | ||
|
|
647969eef8 | ||
|
|
ecce205a6d |
||
|
|
51d49dc7fb |
||
|
|
7cf16083c4 |
||
|
|
5f9350275b |
||
|
|
bedc7b90c1 |
||
|
|
bcadb8fc6e |
||
|
|
1a9a99b4b8 |
||
|
|
68b915e394 |
||
|
|
43fb3cfeb9 |
||
|
|
039ceb6ee5 |
||
|
|
5ee4f5f7d6 |
||
|
|
60ef87e99e |
||
|
|
057ddf3696 |
||
|
|
d98580a163 |
||
|
|
9d7224de91 |
||
|
|
8b5f053bc6 |
||
|
|
ae828a272c |
||
|
|
6616eb3a0e |
||
|
|
dce33dc774 |
||
|
|
7a6f55696c |
||
|
|
09447e8786 |
||
|
|
0fd16a12ed |
||
|
|
7c4e1738c9 |
||
|
|
e0b39d6c6b |
||
|
|
f2ffa0ef81 |
||
|
|
87bcd6ab8b |
||
|
|
5a87ac3c23 | ||
|
|
5bd302fd8b | ||
|
|
f707469cbb | ||
|
|
d5598d2a1d | ||
|
|
5eae6f1209 | ||
|
|
e3f8732ea6 | ||
|
|
6da57a911f | ||
|
|
97df65a7ad | ||
|
|
e4808c6aee |
4 changed files with 154 additions and 609 deletions
26
01-test_net-disable-udp-send-on-unconnected.patch
Normal file
26
01-test_net-disable-udp-send-on-unconnected.patch
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
Author: Tomas Krizek <tomas.krizek@nic.cz>
|
||||
Date: 2019-02-28 14:26:56 +0100
|
||||
|
||||
test_net: disable UDP send on unconnected
|
||||
|
||||
This test started to fail with 5.0 kernel in F30+ on aarch64 and s390x.
|
||||
The functionality isn't used by Knot DNS, so disabling this test until
|
||||
the issue is resolved should be safe.
|
||||
|
||||
Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1675235
|
||||
|
||||
diff --git a/tests/contrib/test_net.c b/tests/contrib/test_net.c
|
||||
index 0a22abbbc..6ec4bda31 100644
|
||||
--- a/tests/contrib/test_net.c
|
||||
+++ b/tests/contrib/test_net.c
|
||||
@@ -310,10 +310,6 @@ static void test_unconnected(void)
|
||||
r = net_dgram_recv(sock, buffer, buffer_len, TIMEOUT_SHORT);
|
||||
is_int(KNOT_ETIMEOUT, r, "UDP, receive timeout on unconnected socket");
|
||||
|
||||
- struct sockaddr_storage server_addr = addr_from_socket(server);
|
||||
- r = net_dgram_send(sock, buffer, buffer_len, &server_addr);
|
||||
- is_int(buffer_len, r, "UDP, send on defined address");
|
||||
-
|
||||
close(sock);
|
||||
|
||||
// TCP
|
||||
18
02-revert-AC_PROG_CC.patch
Normal file
18
02-revert-AC_PROG_CC.patch
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
From: Daniel Salzman <daniel.salzman@nic.cz>
|
||||
Date: Sun, 20 Feb 2022 20:38:35 +0100
|
||||
Subject: [PATCH] Revert "configure: upgrade from AC_PROG_CC_C99 to AC_PROG_CC"
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 6506197ed..c7df7f815 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -38,7 +38,8 @@ release_date=$($SED -n 's/^Knot DNS .* (\(.*\))/\1/p;q;' ${srcdir}/NEWS)
|
||||
AC_SUBST([RELEASE_DATE], $release_date)
|
||||
|
||||
# Set compiler compatibility flags
|
||||
-AC_PROG_CC
|
||||
+AC_PROG_CC_C99 # AC_PROG_CC not supported by CentOS 7
|
||||
+AM_PROG_CC_C_O # Needed by CentOS 7
|
||||
AC_PROG_CPP_WERROR
|
||||
|
||||
# Set default CFLAGS
|
||||
4
sources
4
sources
|
|
@ -1,2 +1,2 @@
|
|||
SHA512 (knot-3.5.2.tar.xz) = 4dd8e42088f792459859da807427024ded926c2a8fb5b9fd4596b631a184269e3d84f0cd4be9192f2546977c598c418f8d44cabccbc393f9f7cf2f0dd5adc595
|
||||
SHA512 (knot-3.5.2.tar.xz.asc) = 5f6ee7fedc0d5b904572d2f6d47858065cdc4efa7217b4e9dcbb38ae63a1533646ba2b042bb0c1fe533a3caf6ba41c81010616393d2a0adcea77712608931b38
|
||||
SHA512 (knot-3.2.13.tar.xz) = ed68faa1d8eba375ca7e22599bafab782f82c3510ec4e3d8a063cbf55c4ee5d5be91a1a045d71e53a36769ec099e252c959471cbc70c1afee2bee4d453732f10
|
||||
SHA512 (knot-3.2.13.tar.xz.asc) = e5c58e06fa637b0a3e020383e7bd8ebca47d094085680a5c65ff4fbbbce47453c887e0ebd4cd05947a704ce1eac2268cdfda27c32c35db7d1ac5b0cb644f311e
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue