On Wed, 3 Jan 2018 21:28:21 +0100, Kurt Van Dijck wrote: > 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> Thank you for submitting these changes. Now all three patches are tested and applied to the nilfs-utils repo. Regards, Ryusuke Konishi > --- > 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 -- 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