commit 47f08d628d75469e2c62901f7b81fe3bf0787b0f
parent eff310d272f9e3915c1d5fa93f635ec8ebccaed6
Author: Laurent Bercot <ska-skaware@skarnet.org>
Date: Tue, 16 Apr 2024 13:13:43 +0000
Try to make the damn thing build
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat:
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/libstddjb/gol.c b/src/libstddjb/gol.c
@@ -38,7 +38,7 @@ int gol (char const *const *argv, unsigned int argc, gol_bool const *b, unsigned
for (; j < an ; j++) if (*p == a[j].so) break ;
if (j < an)
{
- if (p[1]) ar[a[j].i] == p + 1 ;
+ if (p[1]) ar[a[j].i] = p + 1 ;
else if (i+1 < argc && strcmp(argv[i+1], "--")) ar[a[j].i] = argv[++i] ;
break ;
}
diff --git a/src/libstddjb/iopause_select.c b/src/libstddjb/iopause_select.c
@@ -1,9 +1,12 @@
/* ISC license. */
#include <skalibs/bsdsnowflake.h>
+
#include <string.h> /* Solaris... */
#include <errno.h>
+#include <sys/time.h> /* MacOS... */
#include <sys/select.h>
+
#include <skalibs/tai.h>
#include <skalibs/iopause.h>