Files
haikuports/app-arch/libarchive/patches/libarchive-3.1.2.patchset
Chris Roberts b82638db01 Convert/update libarchive to working recipe
Still debating on whether to allow a gcc2 version without lzma support.

Patch will need cmake enhancements before being upstreamed as they
like to keep it in sync with the autotools build.
2013-10-26 19:18:51 -06:00

22 lines
687 B
Plaintext

From e3947009a6fee8dfd0ac635812df2825cdc8c338 Mon Sep 17 00:00:00 2001
From: Chris Roberts <cpr420@gmail.com>
Date: Sat, 26 Oct 2013 18:36:43 -0600
Subject: Check libgnu for xattr functions on Haiku
diff --git a/configure.ac b/configure.ac
index 73944d3..9bfdaa2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -569,6 +569,7 @@ if test "x$enable_xattr" != "xno"; then
AC_CHECK_HEADERS([attr/xattr.h])
AC_CHECK_HEADERS([sys/xattr.h sys/ea.h])
AC_CHECK_LIB(attr,setxattr)
+ AC_CHECK_LIB(gnu,setxattr)
AC_CHECK_FUNCS([extattr_get_file extattr_list_file])
AC_CHECK_FUNCS([extattr_set_fd extattr_set_file])
AC_CHECK_FUNCS([fgetxattr flistxattr fsetxattr getxattr])
--
1.8.3.4