mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
printfloat_test and scanfloat_test need symbols from msun; these are automatically
provided on amd64, but not i386. Add libm to DPADD/LDADD to unbreak the i386 tinderbox Pointyhat to: ngie MFC after: 1 week X-MFC with: r290538 Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
parent
347267dcf8
commit
3e86c1081d
1 changed files with 6 additions and 0 deletions
|
|
@ -26,6 +26,12 @@ NETBSD_ATF_TESTS_C+= popen_test
|
||||||
NETBSD_ATF_TESTS_C+= printf_test
|
NETBSD_ATF_TESTS_C+= printf_test
|
||||||
NETBSD_ATF_TESTS_C+= scanf_test
|
NETBSD_ATF_TESTS_C+= scanf_test
|
||||||
|
|
||||||
|
DPADD.printfloat_test+= ${LIBM}
|
||||||
|
LDADD.printfloat_test+= -lm
|
||||||
|
|
||||||
|
DPADD.scanfloat_test+= ${LIBM}
|
||||||
|
LDADD.scanfloat_test+= -lm
|
||||||
|
|
||||||
.include "../Makefile.netbsd-tests"
|
.include "../Makefile.netbsd-tests"
|
||||||
|
|
||||||
.include <bsd.test.mk>
|
.include <bsd.test.mk>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue