mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-17 16:47:50 +00:00
So, this time we've mostly have a lot of code rework for compel. A big portion of it is still in criu-dev, but some has been merged into master. Other than this and a bunch of bugfixes -- .config file, support for Tun-Tap devices and deprecation of several CLI and RPC options by the --external one. Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
19 lines
600 B
Text
19 lines
600 B
Text
#
|
|
# CRIU version.
|
|
CRIU_VERSION_MAJOR := 2
|
|
CRIU_VERSION_MINOR := 8
|
|
CRIU_VERSION_SUBLEVEL :=
|
|
CRIU_VERSION_EXTRA :=
|
|
CRIU_VERSION_NAME := Bronze Siskin
|
|
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
|
|
|