diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2019-11-11 15:18:50 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2019-11-11 15:18:50 +0000 |
commit | bf13aee1aa701b1d838a09abd25ded986069e2ef (patch) | |
tree | 28ed5301b6499b162f9bf9a12b084a2f76e5dcaa /src | |
parent | 8b5d88d25d26861c08ef261789c6fb4658459c31 (diff) |
Fix means for building dlfunc routines, more
Diffstat (limited to 'src')
-rw-r--r-- | src/src/string.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 * *************************************************/ |