mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-19 10:10:06 +02:00
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.
22 lines
687 B
Plaintext
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
|
|
|