diff options
author | Bruce Momjian | 2005-03-25 18:17:14 +0000 |
---|---|---|
committer | Bruce Momjian | 2005-03-25 18:17:14 +0000 |
commit | 6b7ef076b52f89178ab567f49170786cb2d83645 (patch) | |
tree | 65c7dba9a9b76bd20f1233700b48d1154df8931b /contrib/pgbench/Makefile | |
parent | 410fede0dd8e2effd05aa97baba9fe0fbb23b915 (diff) |
Have libpgport link before libpq so that PG client applications are more
immunte to changes in libpq's usage of pgport between major versions.
Diffstat (limited to 'contrib/pgbench/Makefile')
-rw-r--r-- | contrib/pgbench/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pgbench/Makefile b/contrib/pgbench/Makefile index a2a743a7dc7..55e1c68114b 100644 --- a/contrib/pgbench/Makefile +++ b/contrib/pgbench/Makefile @@ -1,10 +1,10 @@ -# $PostgreSQL: pgsql/contrib/pgbench/Makefile,v 1.12 2004/08/20 20:13:06 momjian Exp $ +# $PostgreSQL: pgsql/contrib/pgbench/Makefile,v 1.13 2005/03/25 18:17:11 momjian Exp $ PROGRAM = pgbench OBJS = pgbench.o PG_CPPFLAGS = -I$(libpq_srcdir) -PG_LIBS = $(libpq) +PG_LIBS = $(libpq_pgport) DOCS = README.pgbench README.pgbench_jis |