]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Fix build: put arc4random.hh into _SOURCES 12999/head
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Fri, 7 Jul 2023 09:04:23 +0000 (11:04 +0200)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Fri, 7 Jul 2023 09:04:23 +0000 (11:04 +0200)
Also a tiny bit of cleanup

ext/arc4random/Makefile.am
ext/arc4random/arc4random.hh

index ee46ad2a57d76d524ac0462ba61a8369b9564f92..3a33bbe3c9cf829bbd7248379c03df5db3baa064 100644 (file)
@@ -1,5 +1,8 @@
 noinst_LTLIBRARIES = libarc4random.la
-libarc4random_la_SOURCES = arc4random.c arc4random.h \
+libarc4random_la_SOURCES = \
+       arc4random.c \
+       arc4random.h \
+       arc4random.hh \
        arc4random_uniform.c \
        bsd-getentropy.c \
        includes.h \
index b2f10608650aa2f1f45019be16208ae7087ad291..1af8fee3805a28a064b90ab7d43b94a1eefdfd3d 100644 (file)
@@ -1,6 +1,7 @@
 #pragma once
 
-#include <inttypes.h>
+#include <cstddef>
+#include <cinttypes>
 
 extern "C"
 {