Support 9.5 and recognize more flags
This follows the CRC32 macro renames in 9.5 (we do not attempt to maintain support for the older versions), adds support for the DB_SHUTDOWNED_IN_RECOVERY dbState, and adds support for missing BTree and GIN page flags. Satoshi Nagayasu
This commit is contained in:
4
Makefile
4
Makefile
@ -1,7 +1,7 @@
|
||||
# View README.pg_filedump first
|
||||
|
||||
# note this must match version macros in pg_filedump.h
|
||||
FD_VERSION=9.3.0
|
||||
FD_VERSION=9.5.0
|
||||
|
||||
CC=gcc
|
||||
CFLAGS=-g -O -Wall -Wmissing-prototypes -Wmissing-declarations
|
||||
@ -19,7 +19,7 @@ DISTFILES= README.pg_filedump Makefile Makefile.contrib \
|
||||
all: pg_filedump
|
||||
|
||||
pg_filedump: pg_filedump.o
|
||||
${CC} ${CFLAGS} -o pg_filedump pg_filedump.o
|
||||
${CC} ${CFLAGS} -o pg_filedump pg_filedump.o -lpgport
|
||||
|
||||
pg_filedump.o: pg_filedump.c
|
||||
${CC} ${CFLAGS} -I${PGSQL_INCLUDE_DIR} pg_filedump.c -c
|
||||
|
Reference in New Issue
Block a user