From 8499825525dbc3c4d3fd531b10c8f545805b1274 Mon Sep 17 00:00:00 2001 From: Michal Nowak Date: Wed, 2 Dec 2020 08:57:46 +0100 Subject: [PATCH] Add uv_wrap.h to libisctest_la_SOURCES uv_wrap.h is included in tcp_test.c and udp_test.c and therefore should be listed in lib/isc/tests/Makefile.am, otherwise unit test run from distribution tarball fails to compile: tcp_test.c:37:10: fatal error: uv_wrap.h: No such file or directory #include "uv_wrap.h" ^~~~~~~~~~~ udp_test.c:37:10: fatal error: uv_wrap.h: No such file or directory #include "uv_wrap.h" ^~~~~~~~~~~ --- lib/isc/tests/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/isc/tests/Makefile.am b/lib/isc/tests/Makefile.am index 50b164da9e..3f08f1685d 100644 --- a/lib/isc/tests/Makefile.am +++ b/lib/isc/tests/Makefile.am @@ -12,7 +12,8 @@ check_LTLIBRARIES = libisctest.la libisctest_la_SOURCES = \ ../unix/socket_p.h \ isctest.c \ - isctest.h + isctest.h \ + uv_wrap.h check_PROGRAMS = \ aes_test \