From: jason taylor Date: Tue, 17 Jul 2018 13:27:23 +0000 (-0400) Subject: configure: added rust install notes X-Git-Tag: suricata-4.1.0-rc2~119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c1173ffcd30fb054cf27f42c9068db8aaf0b084;p=thirdparty%2Fsuricata.git configure: added rust install notes Signed-off-by: jason taylor --- diff --git a/configure.ac b/configure.ac index 1f4e497f1a..a3ec32c6e1 100644 --- a/configure.ac +++ b/configure.ac @@ -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