From patchwork Thu Oct 7 22:38:33 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Gunthorpe X-Patchwork-Id: 239071 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 o97McZrX015250 for ; Thu, 7 Oct 2010 22:38:35 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751614Ab0JGWie (ORCPT ); Thu, 7 Oct 2010 18:38:34 -0400 Received: from quartz.orcorp.ca ([139.142.54.143]:45645 "EHLO quartz.orcorp.ca" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751540Ab0JGWie (ORCPT ); Thu, 7 Oct 2010 18:38:34 -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 1P3z6f-0000x1-5a; Thu, 07 Oct 2010 16:38:33 -0600 Received: from jgg by jggl.edm.orcorp.ca with local (Exim 4.69) (envelope-from ) id 1P3z6f-00006d-4D; Thu, 07 Oct 2010 16:38:33 -0600 Date: Thu, 7 Oct 2010 16:38:33 -0600 From: Jason Gunthorpe To: Roland Dreier , Linux RDMA list Subject: [PATCH] Fix autotools to include the necessary M4 files Message-ID: <20101007223833.GB30829@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:38:35 +0000 (UTC) diff --git a/Makefile.am b/Makefile.am index 5aa1289..e6a50ba 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,6 +2,7 @@ INCLUDES = -I$(srcdir)/include lib_LTLIBRARIES = src/libibverbs.la +ACLOCAL_AMFLAGS = -I config AM_CFLAGS = -g -Wall src_libibverbs_la_CFLAGS = $(AM_CFLAGS) -DIBV_CONFIG_DIR=\"$(sysconfdir)/libibverbs.d\" diff --git a/configure.in b/configure.in index 927c406..cc93e00 100644 --- a/configure.in +++ b/configure.in @@ -4,6 +4,7 @@ AC_PREREQ(2.57) AC_INIT(libibverbs, 1.1.4, general@lists.openfabrics.org) AC_CONFIG_SRCDIR([src/ibverbs.h]) AC_CONFIG_AUX_DIR(config) +AC_CONFIG_MACRO_DIR(config) AC_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE(libibverbs, 1.1.4) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])