diff options
Diffstat (limited to 'sysutils/medusa/patches/patch-ad')
-rw-r--r-- | sysutils/medusa/patches/patch-ad | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/sysutils/medusa/patches/patch-ad b/sysutils/medusa/patches/patch-ad new file mode 100644 index 00000000000..3d74eb22bd5 --- /dev/null +++ b/sysutils/medusa/patches/patch-ad @@ -0,0 +1,32 @@ +$NetBSD: patch-ad,v 1.1.1.1 2001/05/14 17:13:21 rh Exp $ + +--- indexer/medusa-file-index-daemon.c.orig Fri Apr 27 02:55:43 2001 ++++ indexer/medusa-file-index-daemon.c +@@ -33,19 +33,26 @@ + #include <libgnomevfs/gnome-vfs-types.h> + #include <libgnomevfs/gnome-vfs-uri.h> + #include <libgnomevfs/gnome-vfs-utils.h> +-#include <popt.h> ++#include <popt-gnome.h> + #include <stdio.h> + #include <stdlib.h> + #include <string.h> + #include <sys/resource.h> + #include <sys/time.h> + #include <sys/types.h> ++#ifdef HAVE_SYS_VFS_H + #include <sys/vfs.h> ++#endif + + #ifdef HAVE_STATVFS + #include <sys/statvfs.h> + #elif defined(HAVE_STATFS) ++#ifdef HAVE_STATFS_H + #include <sys/statfs.h> ++#else ++#include <sys/param.h> ++#include <sys/mount.h> ++#endif /* HAVE_STATFS_H */ + #endif /* HAVE_STATVFS */ + + #include <time.h> |