From bf13aee1aa701b1d838a09abd25ded986069e2ef Mon Sep 17 00:00:00 2001 From: Jeremy Harris Date: Mon, 11 Nov 2019 15:18:50 +0000 Subject: [PATCH] Fix means for building dlfunc routines, more --- src/src/string.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/src/string.c b/src/src/string.c index 007ec877e..a20807054 100644 --- a/src/src/string.c +++ b/src/src/string.c @@ -411,7 +411,8 @@ return ss; -#if defined(HAVE_LOCAL_SCAN) && !defined(MACRO_PREDEF) && !defined(COMPILE_UTILITY) +#if (defined(HAVE_LOCAL_SCAN) || defined(EXPAND_DLFUNC)) \ + && !defined(MACRO_PREDEF) && !defined(COMPILE_UTILITY) /************************************************* * Copy and save string * *************************************************/ -- 2.30.2