kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 37b25da83d571cfc13792ca3e0b03f85cfae85e3
parent a575881cb9cfcaf3803798a00b7ef7e1c739643b
Author: Joris Vink <joris@coders.se>
Date:   Sat, 23 Jan 2021 11:57:20 +0100

Make sure kore-serve builds.

Diffstat:
tools/kore-serve/src/kore-serve.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tools/kore-serve/src/kore-serve.c b/tools/kore-serve/src/kore-serve.c @@ -21,6 +21,7 @@ #include <sys/types.h> #include <kore/kore.h> +#include <kore/hooks.h> #include <stdlib.h> @@ -46,8 +47,8 @@ kore_parent_configure(int argc, char *argv[]) port = "8888"; ip = "127.0.0.1"; - foreground = 1; kore_quiet = 1; + kore_foreground = 1; skip_runas = 1; skip_chroot = 1;