summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorZack Weinberg <zackw@panix.com>2020-07-12 11:59:14 -0400
committerZack Weinberg <zackw@panix.com>2020-07-12 11:59:14 -0400
commita1acd8e66b7a4ca348401f890b4f04a6ca6b7d15 (patch)
tree5eeb7a2d0139cbc614f1f9473c778676c04547dd /TODO
parentd5cb54d02dba7ba9c0cd3736b46e7b50a71ce2f3 (diff)
downloadautoconf-a1acd8e66b7a4ca348401f890b4f04a6ca6b7d15.tar.gz
Formally obsolete AC_CONFIG_HEADER (#105403)
This macro was replaced by AC_CONFIG_HEADERS many years ago (before the beginning of the VCS history) and isn’t even documented, but we never got around to making autoupdate notice it. Problem reported *in 2006* by jensseidel@users.sf.net. There was one use of AC_CONFIG_HEADER in our source tree, which is converted. Also, to avoid confusing people reading old NEWS or TODO entries, all mentions of AC_CONFIG_HEADER therein are also replaced with AC_CONFIG_HEADERS. * lib/autoconf/status.m4 (AC_CONFIG_HEADER): Make an AU_ALIAS for AC_CONFIG_HEADERS.
Diffstat (limited to 'TODO')
-rw-r--r--TODO4
1 files changed, 2 insertions, 2 deletions
diff --git a/TODO b/TODO
index 14aee2e0..37b2e946 100644
--- a/TODO
+++ b/TODO
@@ -175,9 +175,9 @@ Hi Robert,
> It doesn't seem to add -DX_DISPLAY_MISSING to X_CFLAGS. X_DISPLAY_MISSING
> ends up defined in config.h, instead.
-That's only because you're no doubt using AC_CONFIG_HEADER(..) to send
+That's only because you're no doubt using AC_CONFIG_HEADERS([..]) to send
your defines to a config.h-style file. If you were to not use
-AC_CONFIG_HEADER and X was not available, then you would see
+AC_CONFIG_HEADERS and X was not available, then you would see
-DX_DISPLAY_MISSING being added to @DEFS@ as your output files were being
generated.