diff options
author | minskim <minskim> | 2004-05-04 16:35:57 +0000 |
---|---|---|
committer | minskim <minskim> | 2004-05-04 16:35:57 +0000 |
commit | 690e8d65d26422321ed3bf99186554419df3192b (patch) | |
tree | 1b4f76b492eb89d7c5d94e8713cce87aeb170e35 /sysutils | |
parent | 1e67b8d00afc2cb13192a4fc7cd2ae53927e0fe9 (diff) | |
download | pkgsrc-690e8d65d26422321ed3bf99186554419df3192b.tar.gz |
Run a statfs-related test in configure only when statvfs is not
available. OK'ed by jmmv@.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/gnome-vfs2/distinfo | 4 | ||||
-rw-r--r-- | sysutils/gnome-vfs2/patches/patch-ae | 16 |
2 files changed, 16 insertions, 4 deletions
diff --git a/sysutils/gnome-vfs2/distinfo b/sysutils/gnome-vfs2/distinfo index 3fcc227656e..7097f26b3b9 100644 --- a/sysutils/gnome-vfs2/distinfo +++ b/sysutils/gnome-vfs2/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.21 2004/05/03 15:39:47 jmmv Exp $ +$NetBSD: distinfo,v 1.22 2004/05/04 16:35:57 minskim Exp $ SHA1 (gnome-vfs-2.6.1.1.tar.bz2) = 6d89edf1d7720ce98b78035fa4b833d559c6f34c Size (gnome-vfs-2.6.1.1.tar.bz2) = 1482056 bytes @@ -6,7 +6,7 @@ SHA1 (patch-aa) = 3a8113f861efeb12bec86bff06df1c7d44e7131b SHA1 (patch-ab) = 9fc885b1ef1e9dd05f4b3041963df298dbfba582 SHA1 (patch-ac) = 6790f1ee67f12690bd648d258e87456c2639b560 SHA1 (patch-ad) = 326e835c7fd1d2e25ac2ae4736347d38ffe8ea06 -SHA1 (patch-ae) = bcf75ee08a513c8b4eef7c0c7b8d6ddda6406b83 +SHA1 (patch-ae) = 6243b56ead37a0bd82a5cbd655dfbc7eabb53b14 SHA1 (patch-af) = 4273d773f8f9701262ab541efc43e9f7eb126001 SHA1 (patch-ag) = 0bec8918c71b2aa470c96c4512b11f42550484c4 SHA1 (patch-ai) = 3a45cd84dfa025a52c7db3aab2cca85b540078a6 diff --git a/sysutils/gnome-vfs2/patches/patch-ae b/sysutils/gnome-vfs2/patches/patch-ae index 82003cbcde8..11b7f6c5f05 100644 --- a/sysutils/gnome-vfs2/patches/patch-ae +++ b/sysutils/gnome-vfs2/patches/patch-ae @@ -1,8 +1,8 @@ -$NetBSD: patch-ae,v 1.4 2004/05/03 15:39:47 jmmv Exp $ +$NetBSD: patch-ae,v 1.5 2004/05/04 16:35:57 minskim Exp $ http://bugzilla.gnome.org/show_bug.cgi?id=141736 ---- configure.orig 2004-04-20 11:54:46.000000000 +0200 +--- configure.orig 2004-04-20 04:54:46.000000000 -0500 +++ configure @@ -20202,7 +20202,7 @@ if test -z "`$INTLTOOL_PERL -v | fgrep ' echo "$as_me: error: perl 5.x required for intltool" >&2;} @@ -73,3 +73,15 @@ http://bugzilla.gnome.org/show_bug.cgi?id=141736 #ifdef HAVE_SYS_VFS_H #include <sys/vfs.h> #endif +@@ -25792,9 +25810,11 @@ cat >>conftest.$ac_ext <<_ACEOF + int + main () + { ++#ifndef HAVE_STATVFS + struct statfs st; + statfs(NULL, &st, sizeof (st), 0); + ; ++#endif + return 0; + } + _ACEOF |