We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 524bd10 commit 9aa9fa4Copy full SHA for 9aa9fa4
Makefile
@@ -21,8 +21,7 @@ PG_CONFIG = pg_config
21
PGXS := $(shell $(PG_CONFIG) --pgxs)
22
include $(PGXS)
23
24
-PG_VERSION_NUM = $(shell awk '/PG_VERSION_NUM/ { print $$3 }' $(shell $(PG_CONFIG) --includedir-server)/pg_config.h)
25
-HAS_CROSSTAB = $(shell [ $(PG_VERSION_NUM) -ge 90600 ] && echo yes)
+HAS_CROSSTAB = $(shell [ $(VERSION_NUM) -ge 90600 ] && echo yes)
26
ifeq ($(HAS_CROSSTAB),yes)
27
REGRESS += crosstab convert
28
endif
0 commit comments