mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-07 06:40:06 +00:00
c2786db5c8
logutriga.c:57:24: error: member reference type 'FormData_pg_attribute' (aka 'struct FormData_pg_attribute') is not a pointer; did you mean to use '.'? if (tupdesc->attrs[i]->attisdropped) ~~~~~~~~~~~~~~~~~^~ . logutriga.c:148:24: error: member reference type 'FormData_pg_attribute' (aka 'struct FormData_pg_attribute') is not a pointer; did you mean to use '.'? if (tupdesc->attrs[i]->attisdropped) ~~~~~~~~~~~~~~~~~^~ . 2 errors generated. http://package18.nyi.freebsd.org/data/120amd64-default-PR239514/2019-07-29_20h41m52s/logs/skytools-3.2_3.log While here deprecate it. It was last updated in 2014 and seems to have been abandoned. PR: 239652 Approved by: sam@cassiba.com (maintainer timeout, 2 weeks)
12 lines
388 B
Plaintext
12 lines
388 B
Plaintext
--- sql/txid/Makefile.orig 2013-07-29 08:14:55 UTC
|
|
+++ sql/txid/Makefile
|
|
@@ -12,7 +12,7 @@ pg83 = $(shell test $(PGVER) "<" "8.3" && echo "false"
|
|
pg82 = $(shell test $(PGVER) "<" "8.2" && echo "false" || echo "true")
|
|
endif
|
|
|
|
-ifeq ($(pg83),true) # we have 8.3 with internal txid
|
|
+ifeq (1,1) # we always have >= 9.4 with internal txid
|
|
|
|
# install empty txid.sql
|
|
DATA_built = txid.sql
|