On 2024-07-28 03:08, Francis Dupont wrote: > In your previous mail you wrote: > >> Francis, can you show us your configure.ac please? > > => it is part of the ISC Kea distrib so you can either > download the last dev sources (go to https://www.isc.org, > DOWNLOADS, Kea, Download and Kea-2.7.0.tar.gz) or simply > https://dl.cloudsmith.io/public/isc/kea-dev/raw/versions/2.7.0/kea-2.7.0.tar.gz > > Thanks > > francis.dup...@fdupont.fr
In configure.ac, I suggest changing this: m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])dnl be backward compatible AC_CONFIG_HEADERS([config.h]) To this: m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes]) ])dnl AC_CONFIG_HEADERS([config.h]) Alternately just leave it the same and remove the dnl instead, and don't worry about the extra newline with some automake versions. Hope that helps, Nick