diff options
Diffstat (limited to 'inet')
-rw-r--r-- | inet/Makefile | 7 | ||||
-rw-r--r-- | inet/tst-checks-posix.c | 1 |
2 files changed, 6 insertions, 2 deletions
diff --git a/inet/Makefile b/inet/Makefile index 6a7d3e0664..38c61bdc61 100644 --- a/inet/Makefile +++ b/inet/Makefile @@ -52,11 +52,16 @@ aux := check_pf check_native ifreq tests := htontest test_ifindex tst-ntoa tst-ether_aton tst-network \ tst-gethnm test-ifaddrs bug-if1 test-inet6_opt tst-ether_line \ tst-getni1 tst-getni2 tst-inet6_rth tst-checks tst-checks-posix \ - tst-sockaddr tst-inet6_scopeid_pton test-hnto-types tst-deadline + tst-sockaddr test-hnto-types # tst-deadline must be linked statically so that we can access # internal functions. tests-static += tst-deadline +tests-static-internal := tst-deadline + +# tst-inet6_scopeid_pton also needs internal functions but does not +# need to be linked statically. +tests-internal := tst-inet6_scopeid_pton include ../Rules diff --git a/inet/tst-checks-posix.c b/inet/tst-checks-posix.c index e46b6a2a69..cdcb5cb3aa 100644 --- a/inet/tst-checks-posix.c +++ b/inet/tst-checks-posix.c @@ -19,6 +19,5 @@ /* Process tst-checks.c in POSIX mode. */ #undef _GNU_SOURCE #define _POSIX_C_SOURCE 200112L -#define _ISOMAC #include "tst-checks.c" |