From patchwork Thu Oct 7 22:50:34 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Gunthorpe X-Patchwork-Id: 239101 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o97MoajY021507 for ; Thu, 7 Oct 2010 22:50:36 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753431Ab0JGWuf (ORCPT ); Thu, 7 Oct 2010 18:50:35 -0400 Received: from quartz.orcorp.ca ([139.142.54.143]:59115 "EHLO quartz.orcorp.ca" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753244Ab0JGWuf (ORCPT ); Thu, 7 Oct 2010 18:50:35 -0400 Received: from [10.0.0.11] (helo=jggl.edm.orcorp.ca) by quartz.orcorp.ca with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.68) (envelope-from ) id 1P3zII-00014R-GG; Thu, 07 Oct 2010 16:50:34 -0600 Received: from jgg by jggl.edm.orcorp.ca with local (Exim 4.69) (envelope-from ) id 1P3zII-0000Q4-Ec; Thu, 07 Oct 2010 16:50:34 -0600 Date: Thu, 7 Oct 2010 16:50:34 -0600 From: Jason Gunthorpe To: "Hefty, Sean" , Linux RDMA list Subject: [PATCH librdmacm] Fix autotools to include the necessary M4 files Message-ID: <20101007225034.GC30829@obsidianresearch.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) X-Broken-Reverse-DNS: no host name found for IP address 10.0.0.11 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.3 (demeter1.kernel.org [140.211.167.41]); Thu, 07 Oct 2010 22:50:36 +0000 (UTC) diff --git a/Makefile.am b/Makefile.am index 2668aa3..434cb6b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,6 +2,7 @@ INCLUDES = -I$(srcdir)/include lib_LTLIBRARIES = src/librdmacm.la +ACLOCAL_AMFLAGS = -I config AM_CFLAGS = -g -Wall -D_GNU_SOURCE src_librdmacm_la_CFLAGS = $(AM_CFLAGS) diff --git a/configure.in b/configure.in index 37d1851..e63211f 100644 --- a/configure.in +++ b/configure.in @@ -4,6 +4,7 @@ AC_PREREQ(2.57) AC_INIT(librdmacm, 1.0.13, general@lists.openfabrics.org) AC_CONFIG_SRCDIR([src/cma.c]) AC_CONFIG_AUX_DIR(config) +AC_CONFIG_MACRO_DIR(config) AM_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE(librdmacm, 1.0.13)