diff options
author | Erik Kundiman <erik@megapahit.org> | 2023-07-12 18:59:35 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2023-07-19 14:57:06 +0800 |
commit | 40cd23e1aebdf0d1e7f7295f24970af25bc18983 (patch) | |
tree | 0ab5c7ab3c6de1ccc76b5d8475427743e24b9bf3 | |
parent | e08b527caf6462f2fe94130249aec8ad44a8c83e (diff) |
stricmp needs to be defined on FreeBSD too
-rw-r--r-- | indra/llcommon/llpreprocessor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llpreprocessor.h b/indra/llcommon/llpreprocessor.h index dc586b0008..5df5dd8302 100644 --- a/indra/llcommon/llpreprocessor.h +++ b/indra/llcommon/llpreprocessor.h @@ -80,7 +80,7 @@ #endif // Deal with minor differences on Unixy OSes. -#if LL_DARWIN || LL_LINUX +#if LL_DARWIN || LL_LINUX || LL_FREEBSD // Different name, same functionality. #define stricmp strcasecmp #define strnicmp strncasecmp |