Hi Roland, Add errno.h and sys/mman.h includes in buf.c to get mmap() support, otherwise we cannot build as is.
Those includes were removed in your cleanup. Sorry for not noticing earlier. Signed-off-by: Sebastien Dugue <[email protected]> --- src/buf.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/buf.c b/src/buf.c index bbaff12..a80bcb1 100644 --- a/src/buf.c +++ b/src/buf.c @@ -35,6 +35,8 @@ #endif /* HAVE_CONFIG_H */ #include <stdlib.h> +#include <errno.h> +#include <sys/mman.h> #include "mlx4.h" -- 1.6.3.1 _______________________________________________ general mailing list [email protected] http://lists.openfabrics.org/cgi-bin/mailman/listinfo/general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general
