From 0cc9a2d8fd54ea5ed906597f2f922a85265bdd03 Mon Sep 17 00:00:00 2001 From: Andrey Kleshchev Date: Fri, 25 Aug 2023 19:18:52 +0300 Subject: MacOS gmock build fix Updated gmock complains about missing regex_t. This is likely a macos configuration issue and needs to be fixed, but fot now just forcing the declaration --- indra/test/test.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'indra/test') diff --git a/indra/test/test.cpp b/indra/test/test.cpp index bb48216b2b..cae9d4f5fd 100644 --- a/indra/test/test.cpp +++ b/indra/test/test.cpp @@ -54,6 +54,12 @@ #endif #ifndef LL_WINDOWS + +typedef struct { + void *re_pcre; + size_t re_nsub; + size_t re_erroffset; +} regex_t; #include #include #endif -- cgit v1.2.3