I downloaded m4
from here. In the INSTALL
it is said that I should first ./configure
. But to do that, if I understood correctly, I need to generate configure
via autoconf
from configure.ac
. I do not have autoconf
so I downloaded it from here. The problem is that I need m4
to build autoconf
. Seems like they depend on each other. How can I install m4
?
Asked
Active
Viewed 249 times
0

Shibli
- 5,879
- 13
- 62
- 126
1 Answers
1
In the INSTALL it is said that I should first ./configure
Yes.
But to do that, if I understood correctly, I need to generate configure via autoconf from configure.ac.
No, there's no need to do that. The configure
you need is in the m4 tarball.
How can I install m4?
The old three step: ./configure ; make ; make install;