diff -uraN fakeroot-1.18.4.orig/libfakeroot.c fakeroot-1.18.4/libfakeroot.c
--- fakeroot-1.18.4.orig/libfakeroot.c	2013-04-28 20:03:14.000000000 -0700
+++ fakeroot-1.18.4/libfakeroot.c	2013-04-28 19:59:34.757026184 -0700
@@ -1552,6 +1552,14 @@
 }
 
 #ifdef HAVE_ACL_T
+acl_t acl_get_fd(int fd) {
+  errno = ENOTSUP;
+  return (acl_t)NULL;
+}
+acl_t acl_get_file(const char *path_p, acl_type_t type) {
+  errno = ENOTSUP;
+  return (acl_t)NULL;
+}
 int acl_set_fd(int fd, acl_t acl) {
   errno = ENOTSUP;
   return -1;
diff -uraN fakeroot-1.18.4.orig/wrapfunc.inp fakeroot-1.18.4/wrapfunc.inp
--- fakeroot-1.18.4.orig/wrapfunc.inp	2012-06-02 11:23:41.000000000 -0700
+++ fakeroot-1.18.4/wrapfunc.inp	2013-04-28 20:00:29.301785667 -0700
@@ -168,6 +168,8 @@
 #endif /* HAVE_FSTATAT */
 
 #ifdef HAVE_ACL_T
+acl_get_fd;acl_t;(int fd);(fd)
+acl_get_file;acl_t;(const char *path_p, acl_type_t type);(path_p, type)
 acl_set_fd;int;(int fd, acl_t acl);(fd, acl)
 acl_set_file;int;(const char *path_p, acl_type_t type, acl_t acl);(path_p, type, acl)
 #endif /* HAVE_ACL_T */
