summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLachlan McIlroy <lachlan@sgi.com>2006-12-09 02:55:54 +0000
committerLachlan McIlroy <lachlan@sgi.com>2006-12-09 02:55:54 +0000
commitbdca08384b68341275309e50823a6311d5e4af7a (patch)
treea0554ede8b7c1047c0cf066cea44ddcca2ce6e3a /include
parent6fcfa34114bec2885e6e46782df670ba98ba5034 (diff)
downloadacl-bdca08384b68341275309e50823a6311d5e4af7a.tar.gz
Fix a build issue on GNU/kFreeBSD, thanks to Petr Salinger.
Also updates Debian packaging. Merge of master-melb:xfs-cmds:27678a by kenmcd.
Diffstat (limited to 'include')
-rw-r--r--include/config.h.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/config.h.in b/include/config.h.in
index 0a508e8..6ca788b 100644
--- a/include/config.h.in
+++ b/include/config.h.in
@@ -30,3 +30,8 @@
#endif
#include <locale.h>
+/* On GNU/kFreeBSD, ENODATA is not defined in the system headers */
+#include <errno.h>
+#ifndef ENODATA
+# define ENODATA ENOATTR
+#endif