bug#21114: [PATCH 1/4] Fix the rule to check for new signals and errors

2015-07-22 Thread David Michael
* .gitignore (/libguile/*.NEW): New pattern. * libguile/Makefile.am (chknew-E chknew-SIG): Remove the line continuation after the targets, and include numbers in the recipe's signal/error regexp to catch names like E2BIG. --- This patch series makes a few updates to the generation of the list

bug#21115: [PATCH 2/4] Add new Linux error definitions

2015-07-22 Thread David Michael
* libguile/cpp-E.syms (EHWPOISON, ERFKILL): New definitions. --- When I tested the changes on a Linux-based system, there were some new error definitions. This adds them to the list. libguile/cpp-E.syms | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libguile/cpp-E.syms b/libguile/cpp-E

bug#21116: [PATCH 3/4] Add Hurd signal and error definitions

2015-07-22 Thread David Michael
* libguile/cpp-E.syms (EAUTH, EBACKGROUND): New definitions. (EBADRPC, ED, EDIED, EFTYPE, EGRATUITOUS, EGREGIOUS): Likewise. (EIEIO, ENEEDAUTH, EPROCLIM, EPROCUNAVAIL): Likewise. (EPROGMISMATCH, EPROGUNAVAIL, ERPCMISMATCH): Likewise. * libguile/cpp-SIG.syms (SIGEMT, SIGEV_MAX_SIZE): Likewise.

bug#21117: [PATCH 4/4] Remove sigevent structure value definitions

2015-07-22 Thread David Michael
* libguile/Makefile.am (chknew-E chknew-SIG): Anchor the end of the signal/error name pattern to only match alphanumeric symbols. * libguile/cpp-SIG.syms (SIGEV_MAX_SIZE, SIGEV_NONE): Remove. (SIGEV_PAD_SIZE, SIGEV_SIGNAL, SIGEV_THREAD): Likewise. (SIGEV_THREAD_ID): Likewise. --- I'm assumi