Module Name: src Committed By: hauke Date: Wed Apr 6 22:25:00 UTC 2022
Modified Files: src/usr.sbin/makefs: Makefile Log Message: udf.c uses math library functions. To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 src/usr.sbin/makefs/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.sbin/makefs/Makefile diff -u src/usr.sbin/makefs/Makefile:1.37 src/usr.sbin/makefs/Makefile:1.38 --- src/usr.sbin/makefs/Makefile:1.37 Sun Oct 13 07:28:19 2019 +++ src/usr.sbin/makefs/Makefile Wed Apr 6 22:25:00 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.37 2019/10/13 07:28:19 mrg Exp $ +# $NetBSD: Makefile,v 1.38 2022/04/06 22:25:00 hauke Exp $ # WARNS?= 5 @@ -29,8 +29,8 @@ CPPFLAGS+= -I${.CURDIR} -I${MKNODSRC} -I .include "${.CURDIR}/udf/Makefile.inc" .if !defined(HOSTPROG) -DPADD+= ${LIBUTIL} -LDADD+= -lutil +DPADD+= ${LIBUTIL} ${LIBM} +LDADD+= -lutil -lm COPTS.cd9660.c+= ${GCC_NO_STRINGOP_TRUNCATION} ${GCC_NO_FORMAT_TRUNCATION} COPTS.cd9660_conversion.c+= ${GCC_NO_FORMAT_TRUNCATION}