guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 02/16: Link fix for MinGW.


From: Jan Nieuwenhuizen
Subject: [Guile-commits] 02/16: Link fix for MinGW.
Date: Wed, 11 May 2022 17:45:21 -0400 (EDT)

janneke pushed a commit to branch wip-mingw
in repository guile.

commit 45894c0cf3a2cba38ccbfcb4ce7d77840ae8ae3b
Author: Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Mon Apr 12 18:21:59 2021 +0200

    Link fix for MinGW.
    
    This fixes
    
        libguile/threads.c:1502: undefined reference to 
`select_used_without_including_sys_select_h'
    
    * libguile/threads.c: Include sys/select.h.
---
 libguile/threads.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libguile/threads.c b/libguile/threads.c
index 280d306bf..5441d505c 100644
--- a/libguile/threads.c
+++ b/libguile/threads.c
@@ -31,6 +31,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>   /* for memset used by FD_ZERO on Solaris 10 */
+#include <sys/select.h>
 #include <sys/time.h>
 #include <unistd.h>
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]