From e210ce63f6bb6b1386f5feac7f0e7cc5df8b222f Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Wed, 12 Mar 2025 15:16:51 -0700 Subject: [PATCH] build: bring `config.h.in` into sync with checked in copy `HAVE_STRLCPY` was added to the static configuration but not the dynamic configuration. Update the template for this. --- cmake/config.h.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmake/config.h.in b/cmake/config.h.in index 2896a2083..27737c991 100644 --- a/cmake/config.h.in +++ b/cmake/config.h.in @@ -257,3 +257,6 @@ /* Define if using Darwin $NOCANCEL */ #cmakedefine __DARWIN_NON_CANCELABLE + +/* Define to 1 if you have the `strlcpy` function. */ +#cmakedefine01 HAVE_STRLCPY