Re: [PATCH] Check AWK usability when XKB is enabled

2015-06-05 Thread Justus Winter
Quoting Diego Nieto Cid (2015-06-05 05:28:19) > * configure.ac: test whether AWK provides strtonum function. Merged, thanks! > --- > configure.ac | 8 > 1 file changed, 8 insertions(+) > > diff --git a/configure.ac b/configure.ac > index 71f3a0e..b03057b 100644 > --- a/configure.ac > +

[PATCH] Check AWK usability when XKB is enabled

2015-06-04 Thread Diego Nieto Cid
* configure.ac: test whether AWK provides strtonum function. --- configure.ac | 8 1 file changed, 8 insertions(+) diff --git a/configure.ac b/configure.ac index 71f3a0e..b03057b 100644 --- a/configure.ac +++ b/configure.ac @@ -292,6 +292,14 @@ PKG_CHECK_MODULES([X11], [x11 xproto],

[PATCH] Check AWK usability when XKB is enabled

2015-06-04 Thread Diego Nieto Cid
Hi, While compiling the Hurd in a freshly installed system I found out that the build failed because the awk command (in mawk package) did not implent strtonum function, which is required by a script in console-client. This patch checks whether awk provides such function, whenever XKB is enabled,