From: Michael Orlitzky Date: Mon, 16 Mar 2020 14:45:09 +0000 (-0400) Subject: configure.ac: define a configuration header. X-Git-Tag: v0.4.3~5 X-Git-Url: https://gitweb.michael.orlitzky.com/?p=apply-default-acl.git;a=commitdiff_plain;h=3dccd819a2db46ffd6df1d1063cd6cd0e9d01135 configure.ac: define a configuration header. Instead of passing a million unused -DFOO options on the command-line, this will define a million constants in an unused config.h file, thereby keeping the build logs readable. --- diff --git a/configure.ac b/configure.ac index 6de8a99..581134d 100644 --- a/configure.ac +++ b/configure.ac @@ -7,6 +7,9 @@ AC_CONFIG_FILES([Makefile src/Makefile]) AC_CONFIG_SRCDIR([src/apply-default-acl.c]) AC_CONFIG_MACRO_DIRS([m4]) +# Not used, but keeps the build log clean. +AC_CONFIG_HEADERS([config.h]) + # Checks for programs. AC_PROG_CC AM_PROG_AR