diff options
author | sketch <sketch@pkgsrc.org> | 2004-03-11 18:35:29 +0000 |
---|---|---|
committer | sketch <sketch@pkgsrc.org> | 2004-03-11 18:35:29 +0000 |
commit | 4fa0de7b5ca9f7e9b6d758f8d15833267b6b9e52 (patch) | |
tree | 524aa56a26e7fb88d5af34c18dc732c48b4fc839 /pkgtools | |
parent | 6d27cb5a81fcda7755a44573762ea7c4a3749fd2 (diff) | |
download | pkgsrc-4fa0de7b5ca9f7e9b6d758f8d15833267b6b9e52.tar.gz |
Solaris has fsid_t in sys/vfs.h, so include appropriately.
This gets the new pkgsrc bootstrap working on Solaris.
Diffstat (limited to 'pkgtools')
-rwxr-xr-x | pkgtools/libnbcompat/files/configure | 3 | ||||
-rw-r--r-- | pkgtools/libnbcompat/files/configure.ac | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/pkgtools/libnbcompat/files/configure b/pkgtools/libnbcompat/files/configure index cb11c7f3a20..2f15790aa65 100755 --- a/pkgtools/libnbcompat/files/configure +++ b/pkgtools/libnbcompat/files/configure @@ -5511,6 +5511,9 @@ cat >>conftest.$ac_ext <<_ACEOF #if HAVE_SYS_MOUNT_H #include <sys/mount.h> #endif +#if HAVE_SYS_VFS_H +#include <sys/vfs.h> +#endif int main () diff --git a/pkgtools/libnbcompat/files/configure.ac b/pkgtools/libnbcompat/files/configure.ac index 0d5cf823295..4c583944844 100644 --- a/pkgtools/libnbcompat/files/configure.ac +++ b/pkgtools/libnbcompat/files/configure.ac @@ -1,4 +1,4 @@ -dnl $NetBSD: configure.ac,v 1.37 2004/03/11 13:28:45 grant Exp $ +dnl $NetBSD: configure.ac,v 1.38 2004/03/11 18:35:29 sketch Exp $ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.52) @@ -123,6 +123,9 @@ AC_CHECK_TYPES([fsid_t],[],[], #endif #if HAVE_SYS_MOUNT_H #include <sys/mount.h> +#endif +#if HAVE_SYS_VFS_H +#include <sys/vfs.h> #endif]) AC_C_BIGENDIAN AC_CHECK_SIZEOF(off_t, 0) |