From: Michal Nowak Date: Wed, 2 Dec 2020 07:57:46 +0000 (+0100) Subject: Add uv_wrap.h to libisctest_la_SOURCES X-Git-Tag: v9.17.8~13^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8499825525dbc3c4d3fd531b10c8f545805b1274;p=thirdparty%2Fbind9.git 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" ^~~~~~~~~~~ --- diff --git a/lib/isc/tests/Makefile.am b/lib/isc/tests/Makefile.am index 50b164da9ec..3f08f1685db 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 \