2
0
Эх сурвалжийг харах

cmake: really fix detection of pthread_setname_np() on Apple platforms.

Ozkan Sezer 2 жил өмнө
parent
commit
634705851d
1 өөрчлөгдсөн 2 нэмэгдсэн , 2 устгасан
  1. 2 2
      cmake/sdlchecks.cmake

+ 2 - 2
cmake/sdlchecks.cmake

@@ -1020,9 +1020,9 @@ macro(CheckPTHREAD)
             #include <pthread.h>
             int main(int argc, char **argv) {
               #ifdef __APPLE__
-              pthread_setname_np(pthread_self());
+              pthread_setname_np(\"\");
               #else
-              pthread_setname_np(pthread_self(), \"\");
+              pthread_setname_np(pthread_self(),\"\");
               #endif
               return 0;
             }" HAVE_PTHREAD_SETNAME_NP)