Browse Source

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

Ozkan Sezer 2 years ago
parent
commit
272010b612
1 changed files with 2 additions and 2 deletions
  1. 2 2
      cmake/sdlchecks.cmake

+ 2 - 2
cmake/sdlchecks.cmake

@@ -873,9 +873,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)