]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Add uv_wrap.h to libisctest_la_SOURCES
authorMichal Nowak <mnowak@isc.org>
Wed, 2 Dec 2020 07:57:46 +0000 (08:57 +0100)
committerMichal Nowak <mnowak@isc.org>
Wed, 2 Dec 2020 15:08:18 +0000 (16:08 +0100)
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

index 50b164da9ecc6c9c174046ea88735d45ec0734b8..3f08f1685db9d35a5ad0830729d93c8680ead9f3 100644 (file)
@@ -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        \