musl does provide _POSIX_MAX_INPUT, but no MAX_INPUT out of the box. This commit assigns _POSIX_MAX_INPUT to MAX_INPUT. Signed-off-by: Kurt Van Dijck <dev.kurt@xxxxxxxxxxxxxxxxxxxxxx> --- bin/rmcp.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bin/rmcp.c b/bin/rmcp.c index 0140f56..6773912 100644 --- a/bin/rmcp.c +++ b/bin/rmcp.c @@ -47,6 +47,11 @@ #include <limits.h> #endif /* HAVE_LIMITS_H */ +/* define MAX_INPUT for musl */ +#ifndef MAX_INPUT +#define MAX_INPUT _POSIX_MAX_INPUT +#endif + #include <errno.h> #include "nilfs.h" #include "parser.h" -- 1.8.5.rc3 -- To unsubscribe from this list: send the line "unsubscribe linux-nilfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html