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)
13
13
include $(PGXS )
14
14
15
15
INCLUDEDIR_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 )
19
19
PASSEDBYVALUE = passedbyvalue,
20
20
endif
21
21
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
+
1
7
postgresql-numeral (1.1-1) unstable; urgency=medium
2
8
3
9
[ Debian Janitor ]
You can’t perform that action at this time.
0 commit comments