Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Jan 2011 23:00:52 +0000 (UTC)
From:      Jeff Roberson <jeff@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r216937 - projects/ofed/head
Message-ID:  <201101032300.p03N0qR4008249@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



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