devilhorns pushed a commit to branch master. http://git.enlightenment.org/apps/express.git/commit/?id=eb936584e73ca566a6ed105853a8df93cd6cf73f
commit eb936584e73ca566a6ed105853a8df93cd6cf73f Author: Christopher Michael <devilho...@comcast.net> Date: Mon Feb 1 09:37:21 2021 -0500 express: Fix autofoo building Check for sys/mmap.h header file in configure.ac --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 321ffb3..a701fdf 100644 --- a/configure.ac +++ b/configure.ac @@ -124,7 +124,7 @@ LIBEXPRESS_LIBS="${LIBEXPRESS_LIBS} ${requirements_libexpress_libs}" AC_HEADER_TIME -AC_CHECK_HEADERS([sys/socket.h netinet/in.h arpa/inet.h]) +AC_CHECK_HEADERS([sys/socket.h netinet/in.h arpa/inet.h sys/mman.h]) ### Checks for types --