The readme explains to use autoreconf -i if you wish to build from the source code in the releases. However, the configure.ac file is missing a vital piece for successful making:
Line 5 is: AM_INIT_AUTOMAKE([foreign -Wall -Werror])
But should actually be: AM_INIT_AUTOMAKE([foreign -Wall -Werror subdir-objects]) in order to be successful.
The readme explains to use
autoreconf -i
if you wish to build from the source code in the releases. However, the configure.ac file is missing a vital piece for successful making:Line 5 is:
AM_INIT_AUTOMAKE([foreign -Wall -Werror])
But should actually be:AM_INIT_AUTOMAKE([foreign -Wall -Werror subdir-objects])
in order to be successful.