Skip to content
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.

Commit

Permalink
Support compilation against PostgreSQL 10
Browse files Browse the repository at this point in the history
For Postgres 10+ one should though prefer built in Logical Replication
  • Loading branch information
kmoppel committed Sep 21, 2017
1 parent 0e72af2 commit 29fd391
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
all: walbouncer

# Check for PostgrSQL 9.5/9.6
ifeq ($(shell pg_config --version | grep "PostgreSQL 9.[56]"),)
ifeq ($(shell pg_config --version | grep -E "PostgreSQL 9.[56]|10"),)
$(error PostgreSQL version 9.5/9.6 required, pg_config provides $(shell pg_config --version))
endif

Expand Down

0 comments on commit 29fd391

Please sign in to comment.