Marcel Telka
2024-04-08 e44703e81887ee34cdaa681246ff7cb2065cc027
make-rules/shared-macros.mk
@@ -98,6 +98,9 @@
empty :=
space := $(empty) $(empty)
# Define $(comma) as single comma so we can use it in text transforming functions
comma = ,
ROOT =         /
# Distribution name and version
@@ -689,9 +692,9 @@
LD =      /usr/bin/ld
# Clang definitions (we only have 64 bit clang)
CLANG_DEFAULT =      17
CLANG_DEFAULT =      18
CLANG_VERSION =      $(CLANG_DEFAULT)
CLANG_FULL_VERSION =   $(CLANG_VERSION).0
CLANG_FULL_VERSION =   $(CLANG_VERSION).1
CLANG_PREFIX             = /usr/clang/$(CLANG_FULL_VERSION)
CLANG_BINDIR =      $(CLANG_PREFIX)/bin
CLANG_LIBDIR             = $(CLANG_PREFIX)/lib
@@ -906,6 +909,7 @@
# |         12         |   2024-11-14   |
# |         14         |   2026-11-12   |
# |         15         |   2027-11-11   |
# |         16         |   2028-11-09   |
# +--------------------+----------------+
#
# See https://www.postgresql.org/support/versioning/
@@ -915,7 +919,7 @@
# Default DB version should be the newest one we do have so we detect any
# incompatibilities as soon as possible.  Components could override this when
# they are not ready yet to compile with so new version.
PG_VERSION ?=   15
PG_VERSION ?=   16
PG_IMPLEM ?=    postgres
PG_VERNUM =     $(subst .,,$(PG_VERSION))
# For dependencies, including REQUIRED_PACKAGES if needed