Просмотр исходного кода

Include pthread.h when using GOOGLE_PROTOBUF_NO_THREADLOCAL.

When GOOGLE_PROTOBUF_NO_THREADLOCAL is defined, classes that depend on
pthread functions are included (such as ThreadLocalStorage).
Tom Hughes 10 лет назад
Родитель
Сommit
60c5222287
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      src/google/protobuf/stubs/platform_macros.h

+ 2 - 0
src/google/protobuf/stubs/platform_macros.h

@@ -115,6 +115,8 @@ GOOGLE_PROTOBUF_PLATFORM_ERROR
 // TLS support on android.
 // iOS also does not support the __thread keyword.
 #define GOOGLE_PROTOBUF_NO_THREADLOCAL
+
+#include <pthread.h>
 #endif
 
 #endif  // GOOGLE_PROTOBUF_PLATFORM_MACROS_H_