I am able to successfully build on Ubuntu Linux 6.06 LTS by making the following changes in configure.ac:
comment out the line AC_CONFIG_HEADER([config.h])
and add the following line next, AM_CONFIG_HEADER(config.h)
note that in this new line, config.h is not enclosed in [].
Also need to ensure all development files are download especially the libncurses5-dev package.
Most importantly, edit the configure.ac before starting ./bootstrap, ./configure and make commands.
Log in to post a comment.
I am able to successfully build on Ubuntu Linux 6.06 LTS by making the following changes in configure.ac:
comment out the line
AC_CONFIG_HEADER([config.h])
and add the following line next,
AM_CONFIG_HEADER(config.h)
note that in this new line, config.h is not enclosed in [].
Also need to ensure all development files are download especially the libncurses5-dev package.
Most importantly, edit the configure.ac before starting ./bootstrap, ./configure and make commands.