1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

Portability and documentation fixes for threaded pgbench patch.

This commit is contained in:
Tom Lane
2009-08-03 18:30:55 +00:00
parent 3da0dfb4b1
commit 7ffb14f9db
3 changed files with 42 additions and 24 deletions

View File

@ -1,10 +1,10 @@
# $PostgreSQL: pgsql/contrib/pgbench/Makefile,v 1.16 2007/11/10 23:59:51 momjian Exp $
# $PostgreSQL: pgsql/contrib/pgbench/Makefile,v 1.17 2009/08/03 18:30:55 tgl Exp $
PROGRAM = pgbench
OBJS = pgbench.o
PG_CPPFLAGS = -I$(libpq_srcdir)
PG_LIBS = $(libpq_pgport)
PG_LIBS = $(libpq_pgport) $(PTHREAD_LIBS)
ifdef USE_PGXS
PG_CONFIG = pg_config
@ -16,3 +16,7 @@ top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif
ifneq ($(PORTNAME), win32)
override CFLAGS += $(PTHREAD_CFLAGS)
endif