From owner-svn-src-all@FreeBSD.ORG Sun Nov 30 13:13:47 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C821B2FA; Sun, 30 Nov 2014 13:13:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9A7DD1CA; Sun, 30 Nov 2014 13:13:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAUDDl4L065258; Sun, 30 Nov 2014 13:13:47 GMT (envelope-from hselasky@FreeBSD.org) Received: (from hselasky@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAUDDkGf065254; Sun, 30 Nov 2014 13:13:46 GMT (envelope-from hselasky@FreeBSD.org) Message-Id: <201411301313.sAUDDkGf065254@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: hselasky set sender to hselasky@FreeBSD.org using -f From: Hans Petter Selasky Date: Sun, 30 Nov 2014 13:13:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r275328 - in head/contrib/ofed/librdmacm/examples/build: cmatose mckey rping udaddy X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Nov 2014 13:13:47 -0000 Author: hselasky Date: Sun Nov 30 13:13:46 2014 New Revision: 275328 URL: https://svnweb.freebsd.org/changeset/base/275328 Log: Add missing libraries when linking. MFC after: 3 days Sponsored by: Mellanox Technologies Modified: head/contrib/ofed/librdmacm/examples/build/cmatose/Makefile head/contrib/ofed/librdmacm/examples/build/mckey/Makefile head/contrib/ofed/librdmacm/examples/build/rping/Makefile head/contrib/ofed/librdmacm/examples/build/udaddy/Makefile Modified: head/contrib/ofed/librdmacm/examples/build/cmatose/Makefile ============================================================================== --- head/contrib/ofed/librdmacm/examples/build/cmatose/Makefile Sun Nov 30 13:03:46 2014 (r275327) +++ head/contrib/ofed/librdmacm/examples/build/cmatose/Makefile Sun Nov 30 13:13:46 2014 (r275328) @@ -6,5 +6,6 @@ PROG= cmatose MAN= SRCS= cmatose.c LDADD+= -libverbs -lrdmacm -lpthread +LDADD+= -lmlx4 .include Modified: head/contrib/ofed/librdmacm/examples/build/mckey/Makefile ============================================================================== --- head/contrib/ofed/librdmacm/examples/build/mckey/Makefile Sun Nov 30 13:03:46 2014 (r275327) +++ head/contrib/ofed/librdmacm/examples/build/mckey/Makefile Sun Nov 30 13:13:46 2014 (r275328) @@ -6,5 +6,6 @@ PROG= mckey MAN= SRCS= mckey.c LDADD+= -libverbs -lrdmacm -lpthread +LDADD+= -lmlx4 .include Modified: head/contrib/ofed/librdmacm/examples/build/rping/Makefile ============================================================================== --- head/contrib/ofed/librdmacm/examples/build/rping/Makefile Sun Nov 30 13:03:46 2014 (r275327) +++ head/contrib/ofed/librdmacm/examples/build/rping/Makefile Sun Nov 30 13:13:46 2014 (r275328) @@ -6,5 +6,6 @@ PROG= rping MAN= SRCS= rping.c LDADD+= -libverbs -lrdmacm -lpthread +LDADD+= -lmlx4 .include Modified: head/contrib/ofed/librdmacm/examples/build/udaddy/Makefile ============================================================================== --- head/contrib/ofed/librdmacm/examples/build/udaddy/Makefile Sun Nov 30 13:03:46 2014 (r275327) +++ head/contrib/ofed/librdmacm/examples/build/udaddy/Makefile Sun Nov 30 13:13:46 2014 (r275328) @@ -6,5 +6,6 @@ PROG= udaddy MAN= SRCS= udaddy.c LDADD+= -libverbs -lrdmacm -lpthread +LDADD+= -lmlx4 .include