From 556e2f03cc9e6e92ba361171226cd890db53589e Mon Sep 17 00:00:00 2001 From: Rink Springer Date: Fri, 2 Feb 2018 08:44:55 +0100 Subject: expand: Remove dependency on fmatch.h if it does not exit [ Ugh; forgot to attach patch - apologies, I need more coffee ] Dear all, Attached is a trivial patch that removes the assumption that fnmatch.h is available - the configure script already checks for fnmatch(3) and supplies its own implementation if necessary, but fnmatch.h is always included. Let me know what you think. Regards, Rink Do not assume we can include fnmatch.h Signed-off-by: Rink Springer Signed-off-by: Herbert Xu --- src/expand.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/expand.c b/src/expand.c index 2a50830..1ab5757 100644 --- a/src/expand.c +++ b/src/expand.c @@ -45,7 +45,9 @@ #include #include #include +#ifdef HAVE_FNMATCH #include +#endif #ifdef HAVE_GLOB #include #endif -- cgit 1.4.1 class='sub'>libtls for OpenSSL
summary refs log tree commit diff
Commit message (Collapse)Author
2020-10-22Import LibreSSL 3.2.2June McEnroe
2020-09-29Import LibreSSL 3.2.1June McEnroe
2020-09-29import: Add m4/ax_add_fortify_source.m4June McEnroe
2020-08-05build: Add README.7 to EXTRA_DIST 3.2.0June McEnroe
2020-08-03doc: Indicate that only OpenSSL 1.1.1b and newer workJune McEnroe