Mike Frysinger <[email protected]> writes:
> there was never a situation of fix this *or* that. like i said earlier, the
> plan was to try and fix *all* relevant locations so that every possible
> package benefits. it's faster to start threads in parallel after all.
Maybe you can put '#define MB_CUR_MAX 1' in the config.h to see if it
works? You could also try to patch gnulib's stdlib.h:
diff --git a/lib/stdlib.in.h b/lib/stdlib.in.h
index f99767f..6d3b816 100644
--- a/lib/stdlib.in.h
+++ b/lib/stdlib.in.h
@@ -80,6 +80,9 @@ struct random_data
# define EXIT_FAILURE 1
#endif
+#ifndef MB_CUR_MAX
+# define MB_CUR_MAX 1
+#endif
#ifdef __cplusplus
extern "C" {
/Simon