From: Hannes Reinecke Date: Fri, 30 Apr 2021 11:40:09 +0000 (+0200) Subject: Match systemd version with nvme-cli X-Git-Tag: v1.0-rc0~129^2~12 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=00b666fcee5f94695e3330729e64de91b5ff23ef;p=users%2Fsagi%2Flibnvme.git Match systemd version with nvme-cli nvme-cli refers to systemd version 242, so we should be checking for the same version here to avoid linking failures. Signed-off-by: Hannes Reinecke --- diff --git a/configure b/configure index 3fc24852..24811631 100755 --- a/configure +++ b/configure @@ -195,7 +195,7 @@ print_config "libuuid" "${libuuid}" # check for SystemD systemd="no" if [ -z "$disable_systemd" ] ; then - pkg-config --exists libsystemd --atleast-version=232 + pkg-config --exists libsystemd --atleast-version=242 if [ $? -eq 0 ]; then systemd="yes" fi