bug#25804: [PATCH] api-procedures.texi: typo: 'an' -> 'on'

2017-02-19 Thread Sergei Trofimovich
* doc/ref/api-procedures.texi: fix typo 'an' -> 'on' Signed-off-by: Sergei Trofimovich --- doc/ref/api-procedures.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ref/api-procedures.texi b/doc/ref/api-procedures.texi index 02bf6822a..df24178f9

bug#25805: [PATCH] tweak 'u+0007' to 'U+0007' (as the rest of the table)

2017-02-19 Thread Sergei Trofimovich
* doc/ref/api-data.texi: tweak codepoint notation Signed-off-by: Sergei Trofimovich --- doc/ref/api-data.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ref/api-data.texi b/doc/ref/api-data.texi index 1b3170e4f..9d677371e 100644 ---

bug#25803: [PATCH] guile-snarf: skip -g* arguments to avoid build failure

2017-02-19 Thread Sergei Trofimovich
Steps to reproduce: $ ./configure CFLAGS=-ggdb3 $ make make[1]: Entering directory '/home/slyfox/dev/git/guile/libguile' CC libguile_2.2_la-alist.lo In file included from alist.c:398:0: ../libguile/alist.x: In function 'scm_init_alist':

bug#25803: ./configure CFLAGS=-ggdb3 fails 'guile-snarf'

2017-02-19 Thread Sergei Trofimovich
It popped out as a https://bugs.gentoo.org/show_bug.cgi?id=608190 where one of packages failed to build with CFLAGS=-ggdb3 was guile-2.0.13 guile git master is also affected: $ ./configure CFLAGS=-ggdb3 $ make make[1]: Entering directory '/home/slyfox/dev/git/guile/libguile'

bug#25463: guile-2.0.13 Check errors

2017-02-19 Thread Manolis Ragkousis
Hello, On 02/11/2017 11:03 PM, Ludovic Courtès wrote: > Hello! > > ren...@openmailbox.org skribis: > >> I am trying to build guile version 2.0.13 in GNU Hurd through Guix >> package manager, in the 'Check' phase I have 4 errors; I am attaching >> the build log(config.zip), environment >>

bug#25791: address argument to atomic operation must be a pointer to _Atomic type with 2.1.7 on macOS

2017-02-19 Thread ilove zfs
On macOS 10.11 and 10.12 building with Xcode 8, guile 2.1.7 fails to compile with several errors saying "address argument to atomic operation must be a pointer to _Atomic type." I can avoid this by setting ac_cv_header_stdatomic_h=no. Build logs here:

bug#25790: SOCK_CLOEXEC and SOCK_NONBLOCK undeclared identifier errors with 2.1.7

2017-02-19 Thread ilove zfs
Despite the "accept4 flags.  No ifdef as accept4 has a gnulib implementation" building 2.1.7 fails with undeclared identifier errors for SOCK_CLOEXEC and SOCK_NONBLOCK on macOS. Wrapping the relevant sections in ifdef SOCK_CLOEXEC and ifdef SOCK_NONBLOCK seems to work around the build failure,