build: Use glibc's xattr support instead of requiring libattr
Fixes the build on Debian, and is one library less. Closes: #78
This commit is contained in:
parent
2a30af72db
commit
534c4c20c3
|
|
@ -39,7 +39,7 @@ AC_ARG_ENABLE(installed_tests,
|
|||
[enable_installed_tests=no])
|
||||
AM_CONDITIONAL(BUILDOPT_INSTALL_TESTS, test x$enable_installed_tests = xyes)
|
||||
|
||||
AC_CHECK_HEADER([attr/xattr.h],,[AC_MSG_ERROR([You must have attr/xattr.h from libattr])])
|
||||
AC_CHECK_HEADER([sys/xattr.h],,[AC_MSG_ERROR([You must have sys/xattr.h from glibc])])
|
||||
|
||||
PKG_PROG_PKG_CONFIG
|
||||
|
||||
|
|
|
|||
2
libglnx
2
libglnx
|
|
@ -1 +1 @@
|
|||
Subproject commit 08d1339f9a61c0b437a623e68ebf2c64258d6087
|
||||
Subproject commit d59a63e3e650aa75a055e4ede523790d60645435
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
#include "config.h"
|
||||
|
||||
#include <glib-unix.h>
|
||||
#include <attr/xattr.h>
|
||||
#include <sys/xattr.h>
|
||||
#include <gio/gfiledescriptorbased.h>
|
||||
#include <gio/gunixoutputstream.h>
|
||||
#include "otutil.h"
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@
|
|||
#include "ostree-checksum-input-stream.h"
|
||||
#include "ostree-mutable-tree.h"
|
||||
#include "ostree-varint.h"
|
||||
#include <attr/xattr.h>
|
||||
#include <sys/xattr.h>
|
||||
#include <glib/gprintf.h>
|
||||
|
||||
gboolean
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
#include "ot-fs-utils.h"
|
||||
#include "libgsystem.h"
|
||||
#include <attr/xattr.h>
|
||||
#include <sys/xattr.h>
|
||||
#include <gio/gunixinputstream.h>
|
||||
|
||||
int
|
||||
|
|
|
|||
Loading…
Reference in New Issue