diff options
author | Fabian Groffen <grobian@gentoo.org> | 2021-11-01 11:21:24 +0100 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2021-11-01 11:21:38 +0100 |
commit | 348988482c55e071b0019b3dfaf3297b489cc4e5 (patch) | |
tree | 3292b4193c86adeeb5d46ec4bdcbc99201a760e2 /app-arch/xar/files | |
parent | dev-python/django-cacheops: mark ALLARCHES (diff) | |
download | gentoo-348988482c55e071b0019b3dfaf3297b489cc4e5.tar.gz gentoo-348988482c55e071b0019b3dfaf3297b489cc4e5.tar.bz2 gentoo-348988482c55e071b0019b3dfaf3297b489cc4e5.zip |
app-arch/xar-1.8.0.0.452: unbreak build on Darwin
Closes: https://bugs.gentoo.org/821178
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'app-arch/xar/files')
-rw-r--r-- | app-arch/xar/files/xar-1.8.0.0.452-linux.patch | 35 |
1 files changed, 29 insertions, 6 deletions
diff --git a/app-arch/xar/files/xar-1.8.0.0.452-linux.patch b/app-arch/xar/files/xar-1.8.0.0.452-linux.patch index 8cbe48acc447..a9e9575c400e 100644 --- a/app-arch/xar/files/xar-1.8.0.0.452-linux.patch +++ b/app-arch/xar/files/xar-1.8.0.0.452-linux.patch @@ -1,30 +1,47 @@ --- a/configure.ac +++ b/configure.ac -@@ -199,7 +199,16 @@ +@@ -183,7 +183,7 @@ + + AC_TRY_COMPILE([#include <sys/types.h> + #include <sys/acl.h>], [acl_t a], [AC_DEFINE([HAVE_SYS_ACL_H],[1], [define if you have sys/acl.h and it has a working acl_t type])]) +-AC_CHECK_HEADERS(ext2fs/ext2_fs.h sys/statfs.h sys/xattr.h sys/param.h sys/extattr.h libutil.h) ++AC_CHECK_HEADERS(ext2fs/ext2_fs.h sys/statfs.h sys/vfs.h sys/xattr.h sys/param.h sys/extattr.h libutil.h) + AC_CHECK_FUNCS(lgetxattr) + AC_CHECK_FUNCS(lsetxattr) + AC_CHECK_FUNCS(getxattr) +@@ -199,7 +199,22 @@ AC_CHECK_MEMBERS([struct statfs.f_fstypename],,,[#include <sys/types.h> #include <sys/param.h> -#include <sys/mount.h>]) +#include <sys/mount.h> -+#include <sys/vfs.h>]) ++#ifdef HAVE_SYS_VFS_H ++#include <sys/vfs.h> ++#endif]) +AC_CHECK_MEMBERS([struct statfs.f_iosize],,,[#include <sys/types.h> +#include <sys/param.h> +#include <sys/mount.h> -+#include <sys/vfs.h>]) ++#ifdef HAVE_SYS_VFS_H ++#include <sys/vfs.h> ++#endif]) +AC_CHECK_MEMBERS([struct statfs.f_bsize],,,[#include <sys/types.h> +#include <sys/param.h> +#include <sys/mount.h> -+#include <sys/vfs.h>]) ++#ifdef HAVE_SYS_VFS_H ++#include <sys/vfs.h> ++#endif]) AC_CHECK_MEMBERS([struct statvfs.f_fstypename],,,[#include <sys/statvfs.h>]) AC_CHECK_MEMBERS([struct stat.st_flags]) --- a/lib/util.c +++ b/lib/util.c -@@ -40,6 +40,7 @@ +@@ -40,6 +40,9 @@ #include <sys/types.h> #include <sys/mount.h> #include <sys/param.h> -+#include <sys/vfs.h> ++#ifdef HAVE_SYS_VFS_H ++# include <sys/vfs.h> ++#endif #include <arpa/inet.h> #include <string.h> #include <unistd.h> @@ -61,6 +78,12 @@ } --- a/include/config.h.in +++ b/include/config.h.in +@@ -1,4 +1,5 @@ + #undef HAVE_SYS_STATFS_H ++#undef HAVE_SYS_VFS_H + #undef HAVE_SYS_XATTR_H + #undef HAVE_SYS_EXTATTR_H + #undef HAVE_SYS_PARAM_H @@ -15,6 +15,8 @@ #undef HAVE_STRUCT_STAT_ST_FLAGS #undef HAVE_STRUCT_STATVFS_F_FSTYPENAME |