From patchwork Thu Jun 16 18:10:09 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ira Weiny X-Patchwork-Id: 888212 X-Patchwork-Delegate: ira.weiny@intel.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.4) with ESMTP id p5GI3DxC028044 for ; Thu, 16 Jun 2011 18:03:13 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932212Ab1FPSDM (ORCPT ); Thu, 16 Jun 2011 14:03:12 -0400 Received: from nspiron-3.llnl.gov ([128.115.41.83]:26802 "EHLO smtp.llnl.gov" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1758553Ab1FPSDL (ORCPT ); Thu, 16 Jun 2011 14:03:11 -0400 X-Attachments: None Received: from eris.llnl.gov (HELO trebuchet.chaos) ([134.9.2.84]) by smtp.llnl.gov with SMTP; 16 Jun 2011 11:03:09 -0700 Date: Thu, 16 Jun 2011 11:10:09 -0700 From: Ira Weiny To: "linux-rdma@vger.kernel.org" Subject: [PATCH] infiniband-diags: test for libosmcomp with a function that is used in the code Message-Id: <20110616111009.fb16cc5e.weiny2@llnl.gov> X-Mailer: Sylpheed 3.1.1 (GTK+ 2.10.4; x86_64-unknown-linux-gnu) Mime-Version: 1.0 Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Thu, 16 Jun 2011 18:03:13 +0000 (UTC) From: Ira Weiny Date: Sun, 29 May 2011 18:01:31 -0700 Subject: [PATCH] infiniband-diags: test for libosmcomp with a function that is used in the code Signed-off-by: Ira Weiny --- configure.in | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index c6e8663..f41f049 100644 --- a/configure.in +++ b/configure.in @@ -46,8 +46,8 @@ AC_CHECK_MEMBER([struct umad_port.link_layer], if test "$ac_have_umad_port_link_layer" = "yes"; then AC_DEFINE([HAVE_UMAD_PORT_LINK_LAYER], 1, [Define to 1 if struct umad_port has link_layer member]) fi -AC_CHECK_LIB(osmcomp, cl_thread_init, [], - AC_MSG_ERROR([cl_thread_init() not found. diags require libosmcomp.])) +AC_CHECK_LIB(osmcomp, cl_qmap_insert, [], + AC_MSG_ERROR([cl_qmap_insert() not found. diags require libosmcomp.])) fi dnl Checks for header files.