svn commit: r216937 - projects/ofed/head

Jeff Roberson jeff at FreeBSD.org
Mon Jan 3 23:00:52 UTC 2011


Author: jeff
Date: Mon Jan  3 23:00:52 2011
New Revision: 216937
URL: http://svn.freebsd.org/changeset/base/216937

Log:
   - Add contrib/ofed to the build.  This works for now but may not be
     the ultimate solution.
  
  Sponsored by:	Isilon Systems, iX Systems, and Panasas.

Modified:
  projects/ofed/head/Makefile.inc1

Modified: projects/ofed/head/Makefile.inc1
==============================================================================
--- projects/ofed/head/Makefile.inc1	Mon Jan  3 22:59:15 2011	(r216936)
+++ projects/ofed/head/Makefile.inc1	Mon Jan  3 23:00:52 2011	(r216937)
@@ -65,6 +65,9 @@ SUBDIR+=secure
 SUBDIR+=share
 .endif
 SUBDIR+=sys usr.bin usr.sbin
+.if !defined(MK_OFED) || ${MK_OFED} != "no"
+SUBDIR+=contrib/ofed
+.endif
 #
 # We must do etc/ last for install/distribute to work.
 #
@@ -1177,7 +1180,11 @@ _prebuild_libs=	${_kerberos5_lib_libasn1
 _lib_libthr=	lib/libthr
 .endif
 
-_generic_libs=	${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib
+.if !defined(MK_OFED) || ${MK_OFED} != "no"
+_ofed_lib=	contrib/ofed/usr.lib/
+.endif
+
+_generic_libs=	${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
 
 lib/libopie__L lib/libtacplus__L: lib/libmd__L
 


More information about the svn-src-projects mailing list