Skip to content

Commit 94e4780

Browse files
author
markd
committed
rrdtool: fix build with gcc14 - from fedora
1 parent 6a23f8f commit 94e4780

3 files changed

Lines changed: 1542 additions & 1 deletion

File tree

databases/rrdtool/distinfo

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
$NetBSD: distinfo,v 1.60 2022/11/25 10:41:15 adam Exp $
1+
$NetBSD: distinfo,v 1.61 2024/06/18 11:48:40 markd Exp $
22

33
BLAKE2s (rrdtool-1.8.0.tar.gz) = d0f696e1f608a8938f36840c6cf6aa00624f68877fbcdd339b55c39e475bc613
44
SHA512 (rrdtool-1.8.0.tar.gz) = 8ae6f94d119e8d0e1ba7f2d0738f1ba008a4880d1022f1c0c5436f662d961fceec5c42e01c241493ece3d6f55c60fd7d1d264f93e678f3cf1251201dcde027c1
55
Size (rrdtool-1.8.0.tar.gz) = 2955398 bytes
66
SHA1 (patch-bindings_perl-shared_Makefile.PL) = 839b4474e89b59002d1629425c5839e4df3b8f5c
77
SHA1 (patch-bindings_tcl_Makefile.in) = 0d2515d57ca6a541d1647308d55587046a0a80e8
8+
SHA1 (patch-configure) = faa3f68ccc6e564e363a63b0468af0c33218e054
9+
SHA1 (patch-const-argv.patch) = 6a0c081b1df3bd93eae91d15492e1639cb14d628
810
SHA1 (patch-doc_Makefile.in) = 749309b6532fff991a89c317a57e24f91a2804d1
911
SHA1 (patch-examples_Makefile.in) = 985e90539340c8bac9788e897c4b7b899fe9f6b1
1012
SHA1 (patch-examples_rrdcached_Makefile.in) = be06ac61b314e225d62f9f27da28c24fb6a1b84b
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
$NetBSD: patch-configure,v 1.1 2024/06/18 11:48:40 markd Exp $
2+
3+
Fixes:
4+
5+
conftest.c:124:33: error: implicitly declaring library function 'exit'
6+
with type 'void (int) __attribute__((noreturn))'
7+
8+
From fedora.
9+
10+
--- configure.orig 2022-03-14 14:29:38.000000000 +0000
11+
+++ configure
12+
@@ -19223,6 +19223,7 @@ else
13+
gq_cv_have_tm_gmtoff=no
14+
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
15+
/* end confdefs.h. */
16+
+#include <stdlib.h>
17+
#include <time.h>
18+
#include <$ac_cv_struct_tm>
19+
20+
@@ -19255,6 +19256,7 @@ else
21+
gq_cv_have___tm_gmtoff=no
22+
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
23+
/* end confdefs.h. */
24+
+#include <stdlib.h>
25+
#include <time.h>
26+
#include <$ac_cv_struct_tm>
27+

0 commit comments

Comments
 (0)