mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-17 16:47:50 +00:00
This is a bugfix-mostly release. Interesting new features include the huge rework of files restoring engine which fixed us bugs we haven't seen in reality :) but have proven they exist. Als this rework opens the way for scm-rigts c/r we need for nginx. Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
25 lines
734 B
Text
25 lines
734 B
Text
#
|
|
# CRIU version.
|
|
CRIU_VERSION_MAJOR := 2
|
|
CRIU_VERSION_MINOR := 11
|
|
CRIU_VERSION_SUBLEVEL :=
|
|
CRIU_VERSION_EXTRA :=
|
|
CRIU_VERSION_NAME := Acrylic Bullfinch
|
|
CRIU_VERSION := $(CRIU_VERSION_MAJOR)$(if $(CRIU_VERSION_MINOR),.$(CRIU_VERSION_MINOR))$(if $(CRIU_VERSION_SUBLEVEL),.$(CRIU_VERSION_SUBLEVEL))$(if $(CRIU_VERSION_EXTRA),.$(CRIU_VERSION_EXTRA))
|
|
|
|
export CRIU_VERSION_MAJOR CRIU_VERSION_MINOR CRIU_VERSION_SUBLEVEL
|
|
export CRIU_VERSION_EXTRA CRIU_VERSION_NAME CRIU_VERSION
|
|
|
|
#
|
|
# C library for CRIU.
|
|
CRIU_SO_VERSION_MAJOR := 1
|
|
CRIU_SO_VERSION_MINOR := 0
|
|
|
|
export CRIU_SO_VERSION_MAJOR CRIU_SO_VERSION_MINOR
|
|
|
|
#
|
|
# SOCCR library.
|
|
SOCCR_SO_VERSION_MAJOR := 1
|
|
SOCCR_SO_VERSION_MINOR := 0
|
|
|
|
export SOCCR_SO_VERSION_MAJOR SOCCR_SO_VERSION_MINOR
|