File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ PGXS := $(shell $(PG_CONFIG) --pgxs)
1313include $(PGXS )
1414
1515INCLUDEDIR_SERVER = $(shell $(PG_CONFIG ) --includedir-server)
16- # FLOAT8PASSBYVAL moved from pg_config.h to c.h in PG13
17- FLOAT8PASSBYVAL = $(shell grep FLOAT8PASSBYVAL $(INCLUDEDIR_SERVER ) /pg_config.h $( INCLUDEDIR_SERVER ) /c.h | grep -o true )
18- ifeq ($(FLOAT8PASSBYVAL ) ,true )
16+ # FLOAT8PASSBYVAL is derived from SIZEOF_VOID_P
17+ SIZEOF_VOID_P = $(shell grep '^.define SIZEOF_VOID_P' $(INCLUDEDIR_SERVER ) /pg_config.h | cut -d ' ' -f 3 )
18+ ifeq ($(SIZEOF_VOID_P ) ,8 )
1919PASSEDBYVALUE = passedbyvalue,
2020endif
2121
Original file line number Diff line number Diff line change 1+ postgresql-numeral (1.2-1) unstable; urgency=medium
2+
3+ * Fix passbyvalue logic on PG13/32-bit.
4+
5+ -- Christoph Berg <myon@debian.org> Thu, 21 May 2020 11:08:32 +0200
6+
17postgresql-numeral (1.1-1) unstable; urgency=medium
28
39 [ Debian Janitor ]
You can’t perform that action at this time.
0 commit comments