diff options
author | Guy Harris <guy@alum.mit.edu> | 2018-01-21 18:40:12 -0800 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2018-01-21 18:40:12 -0800 |
commit | cc4797157d4dc03b39053c1e11b682f52927d003 (patch) | |
tree | 707ab6feccd250717e0830bf40e5c57a785df425 /configure.ac | |
parent | 6ccce6f6cd253d95a911ec7a17cfaf9d45d792df (diff) | |
download | tcpdump-cc4797157d4dc03b39053c1e11b682f52927d003.tar.gz |
No need to replace vfprintf().
1988 called; it wants its pre-standard version of C back. As the
comment in vfprintf.c said, "Stock 4.3 doesn't have vfprintf."; it's
been a while since 4.3BSD was the latest shiniest BSD-flavored OS.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 55dd3512..b8e8958b 100644 --- a/configure.ac +++ b/configure.ac @@ -428,7 +428,7 @@ AC_INCLUDES_DEFAULT fi ]) -AC_REPLACE_FUNCS(vfprintf strlcat strlcpy strdup strsep getservent getopt_long) +AC_REPLACE_FUNCS(strlcat strlcpy strdup strsep getservent getopt_long) AC_CHECK_FUNCS(fork vfork strftime) AC_CHECK_FUNCS(setlinebuf) |