Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Nov 2013 14:22:16 +0000 (UTC)
From:      Julio Merino <jmmv@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r257849 - head
Message-ID:  <201311081422.rA8EMGPZ013777@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jmmv
Date: Fri Nov  8 14:22:16 2013
New Revision: 257849
URL: http://svnweb.freebsd.org/changeset/base/257849

Log:
  Add libatf-c++ to the prebuild libs.
  
  Some tests may require C++ so we must ensure this library exists as part
  of the bootstrap process or else they will fail to build.  Do this by
  just depending on lib/atf as part of the bootstrap libraries instead of
  using lib/atf/libatf-c.
  
  Submitted by:	Garrett Cooper <yaneurabeya at gmail dot com>
  Approved by:	rpaulo (mentor)

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Fri Nov  8 14:20:22 2013	(r257848)
+++ head/Makefile.inc1	Fri Nov  8 14:22:16 2013	(r257849)
@@ -1478,7 +1478,7 @@ _prebuild_libs=	${_kerberos5_lib_libasn1
 		${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
 		${_kerberos5_lib_libroken} \
 		${_kerberos5_lib_libwind} \
-		${_lib_atf_libatf_c} \
+		${_lib_atf} \
 		lib/libbz2 ${_libcom_err} lib/libcrypt \
 		lib/libelf lib/libexpat \
 		${_lib_libgssapi} ${_lib_libipx} \
@@ -1493,7 +1493,7 @@ _prebuild_libs=	${_kerberos5_lib_libasn1
 		${_secure_lib_libssh} ${_secure_lib_libssl}
 
 .if ${MK_ATF} != "no"
-_lib_atf_libatf_c=	lib/atf/libatf-c
+_lib_atf=	lib/atf
 .endif
 
 .if ${MK_LIBTHR} != "no"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311081422.rA8EMGPZ013777>