From 50316df104c6ef734e5b48b8a1868e7995d76110 Mon Sep 17 00:00:00 2001 From: Daniel Spiljar Date: Sat, 4 Feb 2023 14:29:58 +0000 Subject: [PATCH] Update version() with more #define statements from config.h. --- src/info.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/info.c b/src/info.c index f075e1b..68c359a 100644 --- a/src/info.c +++ b/src/info.c @@ -88,7 +88,16 @@ version (void) #endif /* HAVE_SYS_DIR_H */ #ifdef HAVE_SYS_NDIR_H print_wrap ("HAVE_SYS_NDIR_H", 15, &n); -#endif +#endif /* HAVE_SYS_NDIR_H */ +#ifdef HAVE_STRPTIME + print_wrap ("HAVE_STRPTIME", 15, &n); +#endif /* HAVE_STRPTIME */ +#ifdef HAVE_REGCOMP + print_wrap ("HAVE_REGCOMP", 15, &n); +#endif /* HAVE_REGCOMP */ +#ifdef HAVE_LIBDMALLOC + print_wrap ("HAVE_LIBDMALLOC", 15, &n); +#endif /* HAVE_LIBDMALLOC */ fprintf (stdout, "\n"); exit(0);