svn commit: r274209 - head

Devin Teske dteske at FreeBSD.org
Fri Nov 7 00:59:41 UTC 2014


Author: dteske
Date: Fri Nov  7 00:59:40 2014
New Revision: 274209
URL: https://svnweb.freebsd.org/changeset/base/274209

Log:
  For really fast machines, an edge-case may exist where dpv(3) may be
  built before contrib dependency, dialog(3). Add dialog(3) to the list
  of _prebuild_libs to ensure that this does not happen.
  
  Tested on:	11.0-CURRENT amd64 @ r274205
  Thanks to:	kargl, Larry Rosenman <ler at lerctr.org>, ngie, markj
  Recommended by:	ngie
  Reviewed by:	ngie, markj
  MFC after:	21 days
  X-MFC-to:	stable/10 stable/9
  X-MFC-with:	274116 274120 274121 274123 274144 274146 274192 274203

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Fri Nov  7 00:29:00 2014	(r274208)
+++ head/Makefile.inc1	Fri Nov  7 00:59:40 2014	(r274209)
@@ -1552,7 +1552,8 @@ _prebuild_libs=	${_kerberos5_lib_libasn1
 		${_cddl_lib_libctf} \
 		lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \
 		${_secure_lib_libcrypto} ${_lib_libldns} \
-		${_secure_lib_libssh} ${_secure_lib_libssl}
+		${_secure_lib_libssh} ${_secure_lib_libssl} \
+		gnu/lib/libdialog
 .if ${MK_GNUCXX} != "no"
 _prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++
 gnu/lib/libstdc++__L: lib/msun__L
@@ -1670,6 +1671,8 @@ _lib_libypclnt=	lib/libypclnt
 lib/libradius__L: lib/libmd__L
 .endif
 
+gnu/lib/libdialog__L: lib/ncurses/ncursesw__L
+
 .for _lib in ${_prereq_libs}
 ${_lib}__PL: .PHONY .MAKE
 .if exists(${.CURDIR}/${_lib})


More information about the svn-src-head mailing list