8000 Make pqsignal() available to pg_regress of ECPG and isolation suites. · patchsoft/postgres@2f69338 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2f69338

Browse files
committed
Make pqsignal() available to pg_regress of ECPG and isolation suites.
Commit 453a5d9 made it available to the src/test/regress build of pg_regress, but all pg_regress builds need the same treatment. Patch 9.2 through 8.4; in 9.3 and later, pg_regress gets pqsignal() via libpgport.
1 parent 95cefd3 commit 2f69338

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/interfaces/ecpg/test/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ clean distclean maintainer-clean:
5353

5454
all: pg_regress$(X)
5555

56-
pg_regress$(X): pg_regress_ecpg.o $(top_builddir)/src/test/regress/pg_regress.o
56+
pg_regress$(X): pg_regress_ecpg.o $(top_builddir)/src/test/regress/pg_regress.o $(top_builddir)/src/test/regress/pqsignal.o
5757
$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LIBS) -o $@
5858

59-
$(top_builddir)/src/test/regress/pg_regress.o:
59+
$(top_builddir)/src/test/regress/pg_regress.o $(top_builddir)/src/test/regress/pqsignal.o:
6060
$(MAKE) -C $(dir $@) $(notdir $@)
6161

6262
# dependencies ensure that path changes propagate

0 commit comments

Comments
 (0)
0