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 a9537bc6ec97fe82551e3a2c7de41c3200248630
parent 9976022a4788a636059a14a7d98305ef306523f5
Author: Joris Vink <joris@coders.se>
Date:   Wed, 25 Jan 2017 22:21:30 +0100

add python flavor string to -v

Diffstat:
src/kore.c | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/kore.c b/src/kore.c @@ -112,6 +112,10 @@ version(void) #if defined(KORE_SINGLE_BINARY) printf("single "); #endif +#if defined(KORE_USE_PYTHON) + printf("python "); +#endif + printf("\n"); exit(0);