From patchwork Mon Sep 9 14:59:38 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steve French X-Patchwork-Id: 2861491 Return-Path: X-Original-To: patchwork-cifs-client@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 824B2BF43F for ; Mon, 9 Sep 2013 14:59:46 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id C48B8203E6 for ; Mon, 9 Sep 2013 14:59:44 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9FC2B203E3 for ; Mon, 9 Sep 2013 14:59:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751726Ab3IIO7k (ORCPT ); Mon, 9 Sep 2013 10:59:40 -0400 Received: from mail-pd0-f179.google.com ([209.85.192.179]:33186 "EHLO mail-pd0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751373Ab3IIO7j (ORCPT ); Mon, 9 Sep 2013 10:59:39 -0400 Received: by mail-pd0-f179.google.com with SMTP id v10so6325103pde.10 for ; Mon, 09 Sep 2013 07:59:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=zmK06qxzW/KTDmmFRG17ZDtHJsFo2NBCv8LhMPuMLX0=; b=cEwpcvHXg9M/Gqc8kOWWxWnuQjR1RDxm/4hOux0xLN6dz339dmyJ93iA2KOm80N2OZ HZmJogqCXfTQgmz9rt6CL/j7g5vq5lVPMQ926xffuYw+2gDdhFotN2hu2KYTd2ZIPzcC wh9nkETK+kTR+MYBjRArZakDLYzMaZ/iLY6dyTnFSC2URHHsQv/tDEPagE75BAb2UzdC AthfAWlgGgjAc8bEQeIs0BVW8eR9ibwXw5GkYFQ2e+Ks0ydRZVDHIi0EyFwUnTwXN+iA 7S1lCMo+MeFPvfbvt5u1rHOjKyg5MwcX+Vtct6swI2BOLHyMl3GP375vU5qK6R/+3uBz gn9w== MIME-Version: 1.0 X-Received: by 10.66.158.72 with SMTP id ws8mr20908034pab.39.1378738779001; Mon, 09 Sep 2013 07:59:39 -0700 (PDT) Received: by 10.68.122.228 with HTTP; Mon, 9 Sep 2013 07:59:38 -0700 (PDT) Date: Mon, 9 Sep 2013 09:59:38 -0500 Message-ID: Subject: fix warning message on cifs-utils build - alternate package name for krb5.h From: Steve French To: "linux-cifs@vger.kernel.org" , samba-technical Sender: linux-cifs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-cifs@vger.kernel.org X-Spam-Status: No, score=-6.0 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY,URIBL_BLACK autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP commit 5c69761267eb54ce0d94f3a30c3ad015efd3a806 Author: Steve French Date: Mon Sep 9 09:55:46 2013 -0500 [CIFS-UTILS] Add another suggested package name for krb5 headers Added an alternate package name for krb5 headers. Noticed the following suggestion asks for the wrong package (at least wrong for FC17) checking krb5.h presence... no checking for krb5.h... no checking krb5/krb5.h usability... no checking krb5/krb5.h presence... no checking for krb5/krb5.h... no configure: WARNING: krb5.h not found, consider installing krb5-libs-devel. Disabling cifs.upcall. [sfrench@w500smf cifs-utils]$ sudo yum install krb5-libs-devel Loaded plugins: langpacks, presto, refresh-packagekit No package krb5-libs-devel available. Error: Nothing to do [sfrench@w500smf cifs-utils]$ sudo yum install krb5-devel (installing krb5-devel worked, but not krb5-libs-devel for this version) Signed-off-by: Steve French enable_cifsupcall="no" fi fi diff --git a/configure.ac b/configure.ac index b5f7c49..c69ede4 100644 --- a/configure.ac +++ b/configure.ac @@ -135,9 +135,9 @@ if test $enable_cifsupcall != "no"; then if test x$ac_cv_header_krb5_krb5_h != xyes ; then if test x$ac_cv_header_krb5_h != xyes ; then if test "$enable_cifsupcall" = "yes"; then - AC_MSG_ERROR([krb5.h not found, consider installing krb5-libs-devel.]) + AC_MSG_ERROR([krb5.h not found, consider installing krb5-devel or krb5-libs-devel.]) else - AC_MSG_WARN([krb5.h not found, consider installing krb5-libs-devel. Disabling cifs.upcall.]) + AC_MSG_WARN([krb5.h not found, consider installing krb5-devel or krb5-libs-devel. Disabling cifs.upcall.])