From: Cédric Villemain Date: Sun, 19 Jun 2016 01:49:56 +0000 (+0200) Subject: Fix FINCORE_BITS X-Git-Tag: 1.2~7 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=8f46bfb18627cec3375132fabce7ef632b8db2fb;p=pgfincore.git Fix FINCORE_BITS forgot to set it based on HAVE_FINCORE --- diff --git a/pgfincore.c b/pgfincore.c index 6edebdc..668b736 100644 --- a/pgfincore.c +++ b/pgfincore.c @@ -60,8 +60,11 @@ PG_MODULE_MAGIC; #define FINCORE_PRESENT 0x1 #define FINCORE_DIRTY 0x2 +#ifndef HAVE_FINCORE +#define FINCORE_BITS 1 +#else #define FINCORE_BITS 2 - +#endif /* * pgfadvise_fctx structure is needed * to keep track of relation path, segment number, ...