perl/Module-Build-Tiny: update to 0.051 for Perl 5.36 and 5.38
[oi-userland.git] / components / shell / bash / patches / solaris-010.input.c.patch
blobef5b86012b9b6a8774d528a70c491036637a1f02
1 # libreadline needs to include <sys/filio.h> (FIONREAD) on Solaris.
2 # Solaris-specific patch.
3 # Not for upstream.
4 --- lib/readline/input.c 2009-04-19 10:12:03.000000000 -0700
5 +++ lib/readline/input.c 2010-09-01 10:46:23.386144948 -0700
6 @@ -51,6 +51,10 @@
7 # include <sys/ioctl.h>
8 #endif
10 +#if defined(SOLARIS)
11 +# include <sys/filio.h>
12 +#endif
14 #include <stdio.h>
15 #include <errno.h>