From: Jon Olav Hauglid Date: July 21 2011 4:25pm Subject: bzr push into mysql-5.5 branch (jon.hauglid:3473 to 3474) Bug#12779790 List-Archive: http://lists.mysql.com/commits/140413 X-Bug: 12779790 Message-Id: <201107211625.p6LGPPel027638@acsmt357.oracle.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit 3474 Jon Olav Hauglid 2011-07-21 Bug#12779790 COMPILATION FAILS OS X 10.7 - IMPLICIT DECLARATION OF FUNCTION 'PTHREAD_INIT' The problem was that compilation would fail with a warning: Implicit declaration of function 'pthread_init' if MySQL was compiled on OS X 10.7 (Lion). The reason was that pthread_init() is now part of an internal OS X pthread library so it was found by CMake. This patch fixes the problem by removing HAVE_PTHREAD_INIT and related code. pthread_init() was specific to MIT-pthreads which has not been supported since 4.1 and was therefore no longer relevant. No test case added. modified: config.h.cmake configure.cmake dbug/dbug_analyze.c dbug/my_main.c dbug/tests.c mysys/my_init.c 3473 Anitha Gopi 2011-07-20 Fixed the bug number since Bug#11755949 was closed as duplicate of Bug#11753919 modified: mysql-test/collections/default.experimental === modified file 'config.h.cmake' --- a/config.h.cmake 2011-04-30 05:24:38 +0000 +++ b/config.h.cmake 2011-07-21 15:45:38 +0000 @@ -219,7 +219,6 @@ #cmakedefine HAVE_PTHREAD_ATTR_SETSTACKSIZE 1 #cmakedefine HAVE_PTHREAD_CONDATTR_CREATE 1 #cmakedefine HAVE_PTHREAD_CONDATTR_SETCLOCK 1 -#cmakedefine HAVE_PTHREAD_INIT 1 #cmakedefine HAVE_PTHREAD_KEY_DELETE 1 #cmakedefine HAVE_PTHREAD_KEY_DELETE 1 #cmakedefine HAVE_PTHREAD_KILL 1 === modified file 'configure.cmake' --- a/configure.cmake 2011-06-30 15:46:53 +0000 +++ b/configure.cmake 2011-07-21 15:45:38 +0000 @@ -391,7 +391,6 @@ CHECK_FUNCTION_EXISTS (pthread_attr_sets CHECK_FUNCTION_EXISTS (pthread_attr_setstacksize HAVE_PTHREAD_ATTR_SETSTACKSIZE) CHECK_FUNCTION_EXISTS (pthread_condattr_create HAVE_PTHREAD_CONDATTR_CREATE) CHECK_FUNCTION_EXISTS (pthread_condattr_setclock HAVE_PTHREAD_CONDATTR_SETCLOCK) -CHECK_FUNCTION_EXISTS (pthread_init HAVE_PTHREAD_INIT) CHECK_FUNCTION_EXISTS (pthread_key_delete HAVE_PTHREAD_KEY_DELETE) CHECK_FUNCTION_EXISTS (pthread_rwlock_rdlock HAVE_PTHREAD_RWLOCK_RDLOCK) CHECK_FUNCTION_EXISTS (pthread_sigmask HAVE_PTHREAD_SIGMASK) === modified file 'dbug/dbug_analyze.c' --- a/dbug/dbug_analyze.c 2011-01-11 09:07:37 +0000 +++ b/dbug/dbug_analyze.c 2011-07-21 15:45:38 +0000 @@ -571,9 +571,6 @@ int main (int argc, char **argv) FILE *infile; FILE *outfile = {stdout}; -#if defined(HAVE_PTHREAD_INIT) - pthread_init(); /* Must be called before DBUG_ENTER */ -#endif my_thread_global_init(); { DBUG_ENTER ("main"); === modified file 'dbug/my_main.c' --- a/dbug/my_main.c 2011-01-11 09:07:37 +0000 +++ b/dbug/my_main.c 2011-07-21 15:45:38 +0000 @@ -16,9 +16,6 @@ char *argv[]; { register int result, ix; extern int factorial(int); -#if defined(HAVE_PTHREAD_INIT) - pthread_init(); /* Must be called before DBUG_ENTER */ -#endif my_thread_global_init(); { === modified file 'dbug/tests.c' --- a/dbug/tests.c 2011-01-11 09:07:37 +0000 +++ b/dbug/tests.c 2011-07-21 15:45:38 +0000 @@ -44,9 +44,6 @@ int main (int argc, char *argv[]) if (argc == 1) return 0; -#if defined(HAVE_PTHREAD_INIT) - pthread_init(); /* Must be called before DBUG_ENTER */ -#endif my_thread_global_init(); dup2(1, 2); === modified file 'mysys/my_init.c' --- a/mysys/my_init.c 2011-06-30 15:46:53 +0000 +++ b/mysys/my_init.c 2011-07-21 15:45:38 +0000 @@ -99,10 +99,6 @@ my_bool my_init(void) fastmutex_global_init(); /* Must be called early */ #endif -#if defined(HAVE_PTHREAD_INIT) - pthread_init(); /* Must be called before DBUG_ENTER */ -#endif - /* $HOME is needed early to parse configuration files located in ~/ */ if ((home_dir= getenv("HOME")) != 0) home_dir= intern_filename(home_dir_buff, home_dir); No bundle (reason: useless for push emails).