tpm2-software / tpm2-tss

OSS implementation of the TCG TPM2 Software Stack (TSS2)
https://tpm2-software.github.io
BSD 2-Clause "Simplified" License
732 stars 360 forks source link

Autoconf error #185

Closed jethrogb closed 8 years ago

jethrogb commented 8 years ago

When running ./bootstrap I get:

Running autoconf ...
configure.ac:10: error: possibly undefined macro: AC_MSG_ERROR
      If this token and others are legitimate, please use m4_pattern_allow.
      See the Autoconf documentation.

The solution, which I found in a similar issue is to change the line in bootstrap with aclocal to aclocal -I m4 --install.

jethrogb commented 8 years ago

Actually the real solution was to install the autoconf archive which is clearly mentioned as a dependency in the INSTALL file.

edonyzpc commented 8 years ago

Hi there, I encounter the same error and I follow your solution which is installing the autoconf archive and other dependencies listed. But I got the same error again.

Is there anything wrong about what I have done?

edonyzpc commented 8 years ago