Explorar el Código

- makefiles cleanups (use $(LOCALBASE) everywhere) -- fixes some include
path problems on netbsd

Andrei Pelinescu-Onciul hace 20 años
padre
commit
97c92f6826
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      modules/db_postgres/Makefile

+ 3 - 3
modules/db_postgres/Makefile

@@ -7,8 +7,8 @@ auto_gen=
 NAME=postgres.so
 NAME=postgres.so
 
 
 # libpq-fe.h locations
 # libpq-fe.h locations
-DEFS +=-I$(LOCALBASE)/include -I/usr/local/pgsql/include -I/usr/include/postgresql
-LIBS=-L$(LOCALBASE)/lib -L$(LOCALBASE)/pgsql/lib -L$(LOCALBASE)/lib/pgsql -L/usr/pkg/lib \
-		-L/usr/pkg/lib/pgsql -lpq
+DEFS +=-I$(LOCALBASE)/include -I$(LOCALBASE)/pgsql/include \
+	-I/usr/include/postgresql
+LIBS=-L$(LOCALBASE)/lib -L$(LOCALBASE)/pgsql/lib -L$(LOCALBASE)/lib/pgsql -lpq
 
 
 include ../../Makefile.modules
 include ../../Makefile.modules