From patchwork Tue Oct 25 16:48:12 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chuck Lever III X-Patchwork-Id: 121769 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from rcsinet14.oracle.com (rcsinet14.oracle.com [148.87.113.126]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "rcsinet14.oracle.com", Issuer "VeriSign Class 3 International Server CA - G3" (verified OK)) by ozlabs.org (Postfix) with ESMTPS id 45F311007D9 for ; Wed, 26 Oct 2011 04:22:42 +1100 (EST) Received: from rcsinet15.oracle.com (rcsinet15.oracle.com [148.87.113.117]) by rcsinet14.oracle.com (Switch-3.4.4/Switch-3.4.1) with ESMTP id p9PGmTeY028773 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 25 Oct 2011 16:48:29 GMT Received: from acsinet21.oracle.com (acsinet21.oracle.com [141.146.126.237]) by rcsinet15.oracle.com (Switch-3.4.4/Switch-3.4.4) with ESMTP id p9PGmNn1016952 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 25 Oct 2011 16:48:24 GMT Received: from oss.oracle.com (oss.oracle.com [141.146.12.120]) by acsinet21.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id p9PGmNMu029270 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 25 Oct 2011 16:48:23 GMT Received: from localhost ([127.0.0.1] helo=oss.oracle.com) by oss.oracle.com with esmtp (Exim 4.63) (envelope-from ) id 1RIkAk-00045f-0a; Tue, 25 Oct 2011 09:48:18 -0700 Received: from rcsinet12.oracle.com ([148.87.113.124]) by oss.oracle.com with esmtp (Exim 4.63) (envelope-from ) id 1RIkAi-00045X-MA for fedfs-utils-devel@oss.oracle.com; Tue, 25 Oct 2011 09:48:16 -0700 Received: from mail-iy0-f171.google.com (mail-iy0-f171.google.com [209.85.210.171]) by rcsinet12.oracle.com (Sentrion-MTA-4.2.0/Sentrion-MTA-4.2.0) with ESMTP id p9PGm5A2016925 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=OK) for ; Tue, 25 Oct 2011 16:48:16 GMT Received: by mail-iy0-f171.google.com with SMTP id n33so973857iae.2 for ; Tue, 25 Oct 2011 09:48:16 -0700 (PDT) Received: by 10.42.135.69 with SMTP id o5mr46015311ict.34.1319561295536; Tue, 25 Oct 2011 09:48:15 -0700 (PDT) Received: from seurat.1015granger.net (adsl-99-26-161-222.dsl.sfldmi.sbcglobal.net. [99.26.161.222]) by mx.google.com with ESMTPS id u8sm2654519igm.4.2011.10.25.09.48.13 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 25 Oct 2011 09:48:14 -0700 (PDT) From: Chuck Lever To: fedfs-utils-devel@oss.oracle.com Date: Tue, 25 Oct 2011 12:48:12 -0400 Message-ID: <20111025164812.18584.72313.stgit@seurat.1015granger.net> In-Reply-To: <20111025163952.18584.51838.stgit@seurat.1015granger.net> References: <20111025163952.18584.51838.stgit@seurat.1015granger.net> User-Agent: StGIT/0.14.3 MIME-Version: 1.0 Subject: [fedfs-utils] [PATCH 01/15] configure.ac: Restore rpcgen dependency X-BeenThere: fedfs-utils-devel@oss.oracle.com X-Mailman-Version: 2.1.9 Precedence: list Reply-To: fedfs-utils Developers List-Id: fedfs-utils Developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: fedfs-utils-devel-bounces@oss.oracle.com Errors-To: fedfs-utils-devel-bounces@oss.oracle.com X-Source-IP: acsinet21.oracle.com [141.146.126.237] X-CT-RefId: str=0001.0A090201.4EA6E858.01A8:SCFSTAT1119972, ss=1, re=-4.000, fgs=0 X-Auth-Type: Internal IP It looks like we still do distribute a .x file, but no part of the source code build depends on it. That's why "make distcheck" didn't catch this. This reverts commit fcc90938a "configure.ac: Remove rpcgen dependency" (Sep 22, 2011). Signed-off-by: Chuck Lever --- configure.ac | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/configure.ac b/configure.ac index bd79ad1..bcbfd18 100644 --- a/configure.ac +++ b/configure.ac @@ -64,6 +64,10 @@ if test "$DOT_PRESENT" = no; then echo "Warning: GraphViz not present on this system. 'make doxy' will fail." fi +# Needed for doc/rpcl +AC_ARG_VAR([RPCGEN], [rpcgen-like protocol compiler command]) +AC_PATH_PROG([RPCGEN], [rpcgen]) + # C compiler options AC_PROG_CC_C99 AC_C_INLINE