Date: Thu, 1 Jan 2015 02:12:44 +0000 (UTC) From: Garrett Cooper <ngie@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r276492 - in stable/10: etc/mtree lib/librt lib/librt/tests lib/libthr lib/libthr/tests Message-ID: <201501010212.t012CikE015758@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ngie Date: Thu Jan 1 02:12:43 2015 New Revision: 276492 URL: https://svnweb.freebsd.org/changeset/base/276492 Log: MFC r274578,r274580: r274578: Add reachover Makefiles for contrib/netbsd-tests/lib/libpthread as lib/libthr/tests A variant of this code has been tested on amd64/i386 for some time by EMC/Isilon on 10-STABLE/11-CURRENT. It builds on other architectures, but the code will remain off until it's proven it works on virtual hardware or real hardware on other architectures Original work by: pho Sponsored by: EMC / Isilon Storage Division r274580: Add reachover Makefiles for contrib/netbsd-tests/lib/librt A variant of this code has been tested on amd64/i386 for some time by EMC/Isilon on 10-STABLE/11-CURRENT. It builds on other architectures, but the code will remain off until it's proven it works on virtual hardware or real hardware on other architectures Sponsored by: EMC / Isilon Storage Division Added: stable/10/lib/librt/Makefile.amd64 - copied unchanged from r274580, head/lib/librt/Makefile.amd64 stable/10/lib/librt/Makefile.i386 - copied unchanged from r274580, head/lib/librt/Makefile.i386 stable/10/lib/librt/tests/ - copied from r274580, head/lib/librt/tests/ stable/10/lib/libthr/Makefile.amd64 - copied unchanged from r274578, head/lib/libthr/Makefile.amd64 stable/10/lib/libthr/Makefile.i386 - copied unchanged from r274578, head/lib/libthr/Makefile.i386 stable/10/lib/libthr/tests/ - copied from r274578, head/lib/libthr/tests/ Modified: stable/10/etc/mtree/BSD.tests.dist stable/10/lib/librt/Makefile stable/10/lib/libthr/Makefile Directory Properties: stable/10/ (props changed) Modified: stable/10/etc/mtree/BSD.tests.dist ============================================================================== --- stable/10/etc/mtree/BSD.tests.dist Thu Jan 1 02:06:00 2015 (r276491) +++ stable/10/etc/mtree/BSD.tests.dist Thu Jan 1 02:12:43 2015 (r276492) @@ -91,6 +91,12 @@ .. libmp .. + librt + .. + libthr + dlopen + .. + .. libutil .. .. Modified: stable/10/lib/librt/Makefile ============================================================================== --- stable/10/lib/librt/Makefile Thu Jan 1 02:06:00 2015 (r276491) +++ stable/10/lib/librt/Makefile Thu Jan 1 02:12:43 2015 (r276492) @@ -1,5 +1,7 @@ # $FreeBSD$ +.include <bsd.own.mk> + LIB=rt SHLIB_MAJOR= 1 CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR} @@ -18,4 +20,6 @@ PRECIOUSLIB= VERSION_MAP= ${.CURDIR}/Version.map +.include <bsd.arch.inc.mk> + .include <bsd.lib.mk> Copied: stable/10/lib/librt/Makefile.amd64 (from r274580, head/lib/librt/Makefile.amd64) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ stable/10/lib/librt/Makefile.amd64 Thu Jan 1 02:12:43 2015 (r276492, copy of r274580, head/lib/librt/Makefile.amd64) @@ -0,0 +1,6 @@ +# $FreeBSD$ + +.if ${MK_TESTS} != "no" +SUBDIR+= tests +.endif + Copied: stable/10/lib/librt/Makefile.i386 (from r274580, head/lib/librt/Makefile.i386) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ stable/10/lib/librt/Makefile.i386 Thu Jan 1 02:12:43 2015 (r276492, copy of r274580, head/lib/librt/Makefile.i386) @@ -0,0 +1,6 @@ +# $FreeBSD$ + +.if ${MK_TESTS} != "no" +SUBDIR+= tests +.endif + Modified: stable/10/lib/libthr/Makefile ============================================================================== --- stable/10/lib/libthr/Makefile Thu Jan 1 02:06:00 2015 (r276491) +++ stable/10/lib/libthr/Makefile Thu Jan 1 02:12:43 2015 (r276492) @@ -64,4 +64,6 @@ SYMLINKS+=lib${LIB}_p.a ${LIBDIR}/libpth CFLAGS+=-DSYSCALL_COMPAT .endif +.include <bsd.arch.inc.mk> + .include <bsd.lib.mk> Copied: stable/10/lib/libthr/Makefile.amd64 (from r274578, head/lib/libthr/Makefile.amd64) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ stable/10/lib/libthr/Makefile.amd64 Thu Jan 1 02:12:43 2015 (r276492, copy of r274578, head/lib/libthr/Makefile.amd64) @@ -0,0 +1,6 @@ +# $FreeBSD$ + +.if ${MK_TESTS} != "no" +SUBDIR+= tests +.endif + Copied: stable/10/lib/libthr/Makefile.i386 (from r274578, head/lib/libthr/Makefile.i386) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ stable/10/lib/libthr/Makefile.i386 Thu Jan 1 02:12:43 2015 (r276492, copy of r274578, head/lib/libthr/Makefile.i386) @@ -0,0 +1,6 @@ +# $FreeBSD$ + +.if ${MK_TESTS} != "no" +SUBDIR+= tests +.endif +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501010212.t012CikE015758>