configure: added rust install notes

Signed-off-by: jason taylor <jtfas90@gmail.com>
pull/3457/head
jason taylor 7 years ago committed by Victor Julien
parent 015cd93014
commit 4c1173ffcd

@ -2179,7 +2179,11 @@ fi
# Rust require jansson (json support).
if test "x$enable_jansson" = "xno"; then
echo ""
echo " ERROR! Rust support requires jansson."
echo " ERROR! Rust support requires libjansson."
echo
echo " Ubuntu: apt-get install libjansson-dev"
echo " Fedora: dnf install jansson-devel"
echo " CentOS/RHEL: yum install jansson-devel"
echo ""
exit 1
fi
@ -2192,12 +2196,20 @@ fi
if test "x$HAVE_CARGO" = "xno"; then
echo ""
echo " ERROR! Rust support requested but cargo not found."
echo
echo " Ubuntu: apt-get install cargo"
echo " Fedora: dnf install cargo"
echo " CentOS/RHEL: yum install cargo"
echo ""
exit 1
fi
if test "x$HAVE_RUST" = "xno"; then
echo ""
echo " ERROR! Rust support requested but rustc not found."
echo
echo " Ubuntu: apt-get install rustc"
echo " Fedora: dnf install rust"
echo " CentOS/RHEL: yum install rust"
echo ""
exit 1
fi

Loading…
Cancel
Save