Trying to create an OpenSSL engine based on a demo code which is an example of MD5 engine. The readme file says that i have to use the following commands in order to build the engine:
$ autoreconf -i
$ ./configure
$ make
So far so good. The problem is that when I'm executing autoreconf -i an error is generated:
configure.ac:18: error: possibly undefined macro: AC_MSG_FAILURE
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
autoreconf: /usr/bin/autoconf failed with exit status: 1
I have to mention that I have installed all the needed tools (autoconf, automake, libtool, pkg-config) and I exhausted all the results on the first page in Google search.
If I'm using the command autoreconf -vi, the error doesn't show up, but the Makefile is not generated so I can't complete the build process.
My OS is Ubuntu 14.04 64-bit, OpenSSL version is 1.0.1f 6 Jan 2014.
What I'm doing wrong? What is the problem?
<openssl src>/crypto/engine/eng_rdrand.c. - jww