diff mbox

Fix build on Fedora 13.

Message ID 1307469531-20595-1-git-send-email-greearb@candelatech.com (mailing list archive)
State New, archived
Headers show

Commit Message

Ben Greear June 7, 2011, 5:58 p.m. UTC
From: Ben Greear <greearb@candelatech.com>

Need sys/stat.h for S_ISDIR and S_ISREG symbols.

Signed-off-by: Ben Greear <greearb@candelatech.com>
---
:100644 100644 99618c9... e057c5c... M	utils/exportfs/exportfs.c
:100644 100644 2aa3d4f... a8ce028... M	utils/mount/mount.c
 utils/exportfs/exportfs.c |    4 ++++
 utils/mount/mount.c       |    3 +++
 2 files changed, 7 insertions(+), 0 deletions(-)

Comments

Chuck Lever June 7, 2011, 6:14 p.m. UTC | #1
Hi Ben-

On Jun 7, 2011, at 1:58 PM, greearb@candelatech.com wrote:

> From: Ben Greear <greearb@candelatech.com>
> 
> Need sys/stat.h for S_ISDIR and S_ISREG symbols.

Can you tell when this problem was introduced?  What ./configure options might be relevant?

> Signed-off-by: Ben Greear <greearb@candelatech.com>
> ---
> :100644 100644 99618c9... e057c5c... M	utils/exportfs/exportfs.c
> :100644 100644 2aa3d4f... a8ce028... M	utils/mount/mount.c
> utils/exportfs/exportfs.c |    4 ++++
> utils/mount/mount.c       |    3 +++
> 2 files changed, 7 insertions(+), 0 deletions(-)
> 
> diff --git a/utils/exportfs/exportfs.c b/utils/exportfs/exportfs.c
> index 99618c9..e057c5c 100644
> --- a/utils/exportfs/exportfs.c
> +++ b/utils/exportfs/exportfs.c
> @@ -12,6 +12,10 @@
> #include <config.h>
> #endif
> 
> +#ifdef HAVE_SYS_STAT_H
> +#include <sys/stat.h>
> +#endif
> +
> #include <unistd.h>
> #include <stdlib.h>
> #include <string.h>
> diff --git a/utils/mount/mount.c b/utils/mount/mount.c
> index 2aa3d4f..a8ce028 100644
> --- a/utils/mount/mount.c
> +++ b/utils/mount/mount.c
> @@ -20,6 +20,9 @@
> 
> #include "config.h"
> #include <unistd.h>
> +#ifdef HAVE_SYS_STAT_H
> +#include <sys/stat.h>
> +#endif
> #include <sys/types.h>
> #include <stdio.h>
> #include <string.h>
> -- 
> 1.7.3.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
Ben Greear June 7, 2011, 6:24 p.m. UTC | #2
On 06/07/2011 11:14 AM, Chuck Lever wrote:
> Hi Ben-
>
> On Jun 7, 2011, at 1:58 PM, greearb@candelatech.com wrote:
>
>> From: Ben Greear<greearb@candelatech.com>
>>
>> Need sys/stat.h for S_ISDIR and S_ISREG symbols.
>
> Can you tell when this problem was introduced?  What ./configure options might be relevant?

I haven't compiled nfs-utils in years.  Since I can't get ./configure to find libgssapi,
I'm compiling with:

./configure --disable-gss


Thanks,
Ben

>
>> Signed-off-by: Ben Greear<greearb@candelatech.com>
>> ---
>> :100644 100644 99618c9... e057c5c... M	utils/exportfs/exportfs.c
>> :100644 100644 2aa3d4f... a8ce028... M	utils/mount/mount.c
>> utils/exportfs/exportfs.c |    4 ++++
>> utils/mount/mount.c       |    3 +++
>> 2 files changed, 7 insertions(+), 0 deletions(-)
>>
>> diff --git a/utils/exportfs/exportfs.c b/utils/exportfs/exportfs.c
>> index 99618c9..e057c5c 100644
>> --- a/utils/exportfs/exportfs.c
>> +++ b/utils/exportfs/exportfs.c
>> @@ -12,6 +12,10 @@
>> #include<config.h>
>> #endif
>>
>> +#ifdef HAVE_SYS_STAT_H
>> +#include<sys/stat.h>
>> +#endif
>> +
>> #include<unistd.h>
>> #include<stdlib.h>
>> #include<string.h>
>> diff --git a/utils/mount/mount.c b/utils/mount/mount.c
>> index 2aa3d4f..a8ce028 100644
>> --- a/utils/mount/mount.c
>> +++ b/utils/mount/mount.c
>> @@ -20,6 +20,9 @@
>>
>> #include "config.h"
>> #include<unistd.h>
>> +#ifdef HAVE_SYS_STAT_H
>> +#include<sys/stat.h>
>> +#endif
>> #include<sys/types.h>
>> #include<stdio.h>
>> #include<string.h>
>> --
>> 1.7.3.4
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
Ben Greear June 7, 2011, 9:47 p.m. UTC | #3
On 06/07/2011 11:24 AM, Ben Greear wrote:
> On 06/07/2011 11:14 AM, Chuck Lever wrote:
>> Hi Ben-
>>
>> On Jun 7, 2011, at 1:58 PM, greearb@candelatech.com wrote:
>>
>>> From: Ben Greear<greearb@candelatech.com>
>>>
>>> Need sys/stat.h for S_ISDIR and S_ISREG symbols.
>>
>> Can you tell when this problem was introduced? What ./configure
>> options might be relevant?
>
> I haven't compiled nfs-utils in years. Since I can't get ./configure to
> find libgssapi,
> I'm compiling with:
>
> ./configure --disable-gss

I think I was given a bad git repo suggestion in a previous email.

I was using:  git://git.infradead.org/users/steved/nfs-utils.git
which hasn't been updated in years.

Let me start all over again with
git://git.linux-nfs.org/projects/steved/nfs-utils.git

Thanks,
Ben
Steve Dickson June 8, 2011, 3:12 a.m. UTC | #4
On 06/07/2011 05:47 PM, Ben Greear wrote:
> On 06/07/2011 11:24 AM, Ben Greear wrote:
>> On 06/07/2011 11:14 AM, Chuck Lever wrote:
>>> Hi Ben-
>>>
>>> On Jun 7, 2011, at 1:58 PM, greearb@candelatech.com wrote:
>>>
>>>> From: Ben Greear<greearb@candelatech.com>
>>>>
>>>> Need sys/stat.h for S_ISDIR and S_ISREG symbols.
>>>
>>> Can you tell when this problem was introduced? What ./configure
>>> options might be relevant?
>>
>> I haven't compiled nfs-utils in years. Since I can't get ./configure to
>> find libgssapi,
>> I'm compiling with:
>>
>> ./configure --disable-gss
> 
> I think I was given a bad git repo suggestion in a previous email.
> 
> I was using:  git://git.infradead.org/users/steved/nfs-utils.git
> which hasn't been updated in years.
> 
> Let me start all over again with
> git://git.linux-nfs.org/projects/steved/nfs-utils.git
Here is the correct path:
    git://linux-nfs.org/~steved/exports/nfs-utils

steved.

--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Ben Greear June 8, 2011, 4 a.m. UTC | #5
On 06/07/2011 08:12 PM, Steve Dickson wrote:
>
>
> On 06/07/2011 05:47 PM, Ben Greear wrote:
>> On 06/07/2011 11:24 AM, Ben Greear wrote:
>>> On 06/07/2011 11:14 AM, Chuck Lever wrote:
>>>> Hi Ben-
>>>>
>>>> On Jun 7, 2011, at 1:58 PM, greearb@candelatech.com wrote:
>>>>
>>>>> From: Ben Greear<greearb@candelatech.com>
>>>>>
>>>>> Need sys/stat.h for S_ISDIR and S_ISREG symbols.
>>>>
>>>> Can you tell when this problem was introduced? What ./configure
>>>> options might be relevant?
>>>
>>> I haven't compiled nfs-utils in years. Since I can't get ./configure to
>>> find libgssapi,
>>> I'm compiling with:
>>>
>>> ./configure --disable-gss
>>
>> I think I was given a bad git repo suggestion in a previous email.
>>
>> I was using:  git://git.infradead.org/users/steved/nfs-utils.git
>> which hasn't been updated in years.
>>
>> Let me start all over again with
>> git://git.linux-nfs.org/projects/steved/nfs-utils.git
> Here is the correct path:
>      git://linux-nfs.org/~steved/exports/nfs-utils

Out of curiosity, what is the difference between the two
above?

Thanks,
Ben

>
> steved.
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
Steve Dickson June 8, 2011, 11:08 a.m. UTC | #6
On 06/08/2011 12:00 AM, Ben Greear wrote:
> On 06/07/2011 08:12 PM, Steve Dickson wrote:
>>
>>
>> On 06/07/2011 05:47 PM, Ben Greear wrote:
>>> On 06/07/2011 11:24 AM, Ben Greear wrote:
>>>> On 06/07/2011 11:14 AM, Chuck Lever wrote:
>>>>> Hi Ben-
>>>>>
>>>>> On Jun 7, 2011, at 1:58 PM, greearb@candelatech.com wrote:
>>>>>
>>>>>> From: Ben Greear<greearb@candelatech.com>
>>>>>>
>>>>>> Need sys/stat.h for S_ISDIR and S_ISREG symbols.
>>>>>
>>>>> Can you tell when this problem was introduced? What ./configure
>>>>> options might be relevant?
>>>>
>>>> I haven't compiled nfs-utils in years. Since I can't get ./configure to
>>>> find libgssapi,
>>>> I'm compiling with:
>>>>
>>>> ./configure --disable-gss
>>>
>>> I think I was given a bad git repo suggestion in a previous email.
>>>
>>> I was using:  git://git.infradead.org/users/steved/nfs-utils.git
>>> which hasn't been updated in years.
>>>
>>> Let me start all over again with
>>> git://git.linux-nfs.org/projects/steved/nfs-utils.git
>> Here is the correct path:
>>      git://linux-nfs.org/~steved/exports/nfs-utils
> 
> Out of curiosity, what is the difference between the two
> above?
nothing.... 

steved.
--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/utils/exportfs/exportfs.c b/utils/exportfs/exportfs.c
index 99618c9..e057c5c 100644
--- a/utils/exportfs/exportfs.c
+++ b/utils/exportfs/exportfs.c
@@ -12,6 +12,10 @@ 
 #include <config.h>
 #endif
 
+#ifdef HAVE_SYS_STAT_H
+#include <sys/stat.h>
+#endif
+
 #include <unistd.h>
 #include <stdlib.h>
 #include <string.h>
diff --git a/utils/mount/mount.c b/utils/mount/mount.c
index 2aa3d4f..a8ce028 100644
--- a/utils/mount/mount.c
+++ b/utils/mount/mount.c
@@ -20,6 +20,9 @@ 
 
 #include "config.h"
 #include <unistd.h>
+#ifdef HAVE_SYS_STAT_H
+#include <sys/stat.h>
+#endif
 #include <sys/types.h>
 #include <stdio.h>
 #include <string.h>