svn commit: r270285 - in stable/10: etc/mtree lib/libmp lib/libmp/tests tools/regression/lib/libmp
Garrett Cooper
ngie at FreeBSD.org
Thu Aug 21 17:32:39 UTC 2014
Author: ngie
Date: Thu Aug 21 17:32:38 2014
New Revision: 270285
URL: http://svnweb.freebsd.org/changeset/base/270285
Log:
MFC r269534:
Integrate lib/libmp into the build/kyua
- Remove the .t wrapper
- Fix -Wreturn-type warnings with clang
This change has been tested on amd64/i386
Phabric: D530
Reviewed by: jmmv
Approved by: jmmv (co--mentor)
MFC after: 2 weeks
Sponsored by: EMC / Isilon Storage Division
MFC note: src.opts.mk in the original commit was changed to
bsd.own.mk.
Added:
stable/10/lib/libmp/tests/
- copied from r269534, head/lib/libmp/tests/
Deleted:
stable/10/tools/regression/lib/libmp/
Modified:
stable/10/etc/mtree/BSD.tests.dist
stable/10/lib/libmp/Makefile
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/etc/mtree/BSD.tests.dist
==============================================================================
--- stable/10/etc/mtree/BSD.tests.dist Thu Aug 21 17:18:21 2014 (r270284)
+++ stable/10/etc/mtree/BSD.tests.dist Thu Aug 21 17:32:38 2014 (r270285)
@@ -85,6 +85,8 @@
..
libcrypt
..
+ libmp
+ ..
..
libexec
atf
Modified: stable/10/lib/libmp/Makefile
==============================================================================
--- stable/10/lib/libmp/Makefile Thu Aug 21 17:18:21 2014 (r270284)
+++ stable/10/lib/libmp/Makefile Thu Aug 21 17:32:38 2014 (r270285)
@@ -1,5 +1,7 @@
# $FreeBSD$
+.include <bsd.own.mk>
+
LIB= mp
SHLIB_MAJOR= 7
DPADD= ${LIBCRYPTO}
@@ -13,4 +15,8 @@ CFLAGS+= -I${.CURDIR}/../../crypto
VERSION_DEF= ${.CURDIR}/../libc/Versions.def
SYMBOL_MAPS= ${.CURDIR}/Symbol.map
+.if ${MK_TESTS} != "no"
+SUBDIR+= tests
+.endif
+
.include <bsd.lib.mk>
More information about the svn-src-stable
mailing list