rippled
rippled copied to clipboard
Reporting Mode Dependencies
Hi, what about adding "autoconf" to the list of prerequisites here?
Use apt-get to install the dependencies provided by the distribution
$ apt-get update
$ apt-get install -y gcc g++ wget git cmake pkg-config protobuf-compiler libprotobuf-dev libssl-dev
While compiling v1.7 for ubuntu I got this error:
Scanning dependencies of target krb5_src
[ 29%] Performing configure step for 'krb5_src'
/bin/sh: 1: **autoreconf: not found**
make[2]: *** [CMakeFiles/krb5_src.dir/build.make:108: ../.nih_c/unix_makefiles/GNU_9.3.0/Release/src/krb5_src-stamp/krb5_src-configure] Error 127
make[1]: *** [CMakeFiles/Makefile2:485: CMakeFiles/krb5_src.dir/all] Error 2
Which error was solved by installing the below:
sudo apt-get install autoconf
Best, Lucian