From 60fc060d2736ecf7a69cff4e3c4a38bfa73c81b0 Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Fri, 12 Nov 2010 15:31:44 +0000 Subject: [PATCH] DB Function add standard pgsql include dir too --- db/functions/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/db/functions/Makefile b/db/functions/Makefile index bb7d54a9c..2f97d6d94 100644 --- a/db/functions/Makefile +++ b/db/functions/Makefile @@ -22,13 +22,13 @@ quadtile-mysql.o: quadtile.c ${QTDIR}/quad_tile.h cc `mysql_config --include` -I${QTDIR} -fPIC -O3 -DUSE_MYSQL -c -o quadtile-mysql.o quadtile.c quadtile-pgsql.o: quadtile.c ${QTDIR}/quad_tile.h - cc -I `pg_config --includedir-server` -I${QTDIR} -fPIC -O3 -DUSE_PGSQL -c -o quadtile-pgsql.o quadtile.c + cc -I `pg_config --includedir` -I `pg_config --includedir-server` -I${QTDIR} -fPIC -O3 -DUSE_PGSQL -c -o quadtile-pgsql.o quadtile.c maptile-mysql.o: maptile.c cc `mysql_config --include` -fPIC -O3 -DUSE_MYSQL -c -o maptile-mysql.o maptile.c maptile-pgsql.o: maptile.c - cc -I `pg_config --includedir-server` -fPIC -O3 -DUSE_PGSQL -c -o maptile-pgsql.o maptile.c + cc -I `pg_config --includedir` -I `pg_config --includedir-server` -fPIC -O3 -DUSE_PGSQL -c -o maptile-pgsql.o maptile.c xid_to_int4-pgsql.o: xid_to_int4.c - cc -I `pg_config --includedir-server` -fPIC -O3 -DUSE_PGSQL -c -o xid_to_int4-pgsql.o xid_to_int4.c + cc -I `pg_config --includedir` -I `pg_config --includedir-server` -fPIC -O3 -DUSE_PGSQL -c -o xid_to_int4-pgsql.o xid_to_int4.c -- 2.43.2