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 a5806d91f80e88b70447086f1a55a21300ec134c
parent c3ea0e9e668ddcd3f780b9c58bf5bda2ea46736f
Author: Joris Vink <joris@coders.se>
Date:   Fri, 18 Jul 2014 15:59:07 +0200

Pull in pg_config.h correctly, fixes compilation for pgsql under OpenBSD

Diffstat:
src/pgsql.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/pgsql.c b/src/pgsql.c @@ -18,7 +18,7 @@ #include <sys/queue.h> #include <libpq-fe.h> -#include <postgresql/pg_config.h> +#include <pg_config.h> #include "kore.h" #include "http.h"