Allow building with PostgreSQL 10rc1
This is what we get:
    $ pg_config --version
    PostgreSQL 10rc1
			
			
This commit is contained in:
		
							
								
								
									
										4
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								Makefile
									
									
									
									
									
								
							| @ -12,13 +12,13 @@ EXTENSION = pg_repack | ||||
| .PHONY: dist/$(EXTENSION)-$(EXTVERSION).zip | ||||
|  | ||||
| # Pull out PostgreSQL version number from pg_config | ||||
| VERSION := $(shell $(PG_CONFIG) --version | awk '{print $$2}') | ||||
| VERSION := $(shell $(PG_CONFIG) --version | sed 's/.* \([[:digit:].]\{1,\}\).*/\1/') | ||||
| ifeq ("$(VERSION)","") | ||||
| $(error pg_config not found) | ||||
| endif | ||||
|  | ||||
| # PostgreSQL version as a number, e.g. 9.1.4 -> 901 | ||||
| INTVERSION := $(shell echo $$(($$(echo $(VERSION) | sed 's/\([[:digit:]]\{1,\}\)\.\([[:digit:]]\{1,\}\).*/\1*100+\2/')))) | ||||
| INTVERSION := $(shell echo $$(($$(echo $(VERSION).0 | sed 's/\([[:digit:]]\{1,\}\)\.\([[:digit:]]\{1,\}\).*/\1*100+\2/')))) | ||||
|  | ||||
| # The version number of the library | ||||
| EXTVERSION = $(shell grep '"version":' META.json | head -1 \ | ||||
|  | ||||
| @ -9,8 +9,8 @@ | ||||
| PG_CONFIG ?= pg_config | ||||
|  | ||||
| # version as a number, e.g. 9.1.4 -> 901 | ||||
| VERSION := $(shell $(PG_CONFIG) --version | awk '{print $$2}') | ||||
| INTVERSION := $(shell echo $$(($$(echo $(VERSION) | sed 's/\([[:digit:]]\{1,\}\)\.\([[:digit:]]\{1,\}\).*/\1*100+\2/')))) | ||||
| VERSION := $(shell $(PG_CONFIG) --version | sed 's/.* \([[:digit:].]\{1,\}\).*/\1/') | ||||
| INTVERSION := $(shell echo $$(($$(echo $(VERSION).0 | sed 's/\([[:digit:]]\{1,\}\)\.\([[:digit:]]\{1,\}\).*/\1*100+\2/')))) | ||||
|  | ||||
| EXTENSION = pg_repack | ||||
| MODULE_big = $(EXTENSION) | ||||
|  | ||||
| @ -9,8 +9,8 @@ | ||||
| PG_CONFIG ?= pg_config | ||||
|  | ||||
| # version as a number, e.g. 9.1.4 -> 901 | ||||
| VERSION := $(shell $(PG_CONFIG) --version | awk '{print $$2}') | ||||
| INTVERSION := $(shell echo $$(($$(echo $(VERSION) | sed 's/\([[:digit:]]\{1,\}\)\.\([[:digit:]]\{1,\}\).*/\1*100+\2/' )))) | ||||
| VERSION := $(shell $(PG_CONFIG) --version | sed 's/.* \([[:digit:].]\{1,\}\).*/\1/') | ||||
| INTVERSION := $(shell echo $$(($$(echo $(VERSION).0 | sed 's/\([[:digit:]]\{1,\}\)\.\([[:digit:]]\{1,\}\).*/\1*100+\2/')))) | ||||
|  | ||||
|  | ||||
| # | ||||
|  | ||||
		Reference in New Issue
	
	Block a user