Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRadostin Stoyanov <rstoyanov1@gmail.com>2019-01-04 21:30:29 +0300
committerAndrei Vagin <avagin@gmail.com>2019-04-21 06:25:26 +0300
commit556223a646b7939e32b67f4d33d6148640d96fd0 (patch)
tree2cdc2b821ce89fe5482232866937326d6bf3236a /Makefile.config
parent64c6e2959131371020dc9a7c58e87e48808f66ef (diff)
build: Show a note when building wihout libbsd
Show a note that when libbsd is not installed CRIU is compiled without setproctitle() and strlcpy() support. Signed-off-by: Radostin Stoyanov <rstoyanov1@gmail.com> Signed-off-by: Andrei Vagin <avagin@gmail.com>
Diffstat (limited to 'Makefile.config')
-rw-r--r--Makefile.config3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.config b/Makefile.config
index 0e557805c..d89ccbb1a 100644
--- a/Makefile.config
+++ b/Makefile.config
@@ -5,6 +5,9 @@ include scripts/feature-tests.mak
ifeq ($(call try-cc,$(FEATURE_TEST_LIBBSD_DEV),-lbsd),true)
LIBS_FEATURES += -lbsd
FEATURE_DEFINES += -DCONFIG_HAS_LIBBSD
+else
+ $(info Note: Building without setproctitle() and strlcpy() support.)
+ $(info $(info) To enable these features, please install libbsd-devel (RPM) / libbsd-dev (DEB).)
endif
ifeq ($(call pkg-config-check,libselinux),y)