An error occurred fetching the project authors.
  1. 12 Jan, 2010 1 commit
  2. 08 Dec, 2009 1 commit
  3. 02 Dec, 2009 1 commit
  4. 25 Nov, 2009 1 commit
  5. 21 Nov, 2009 1 commit
  6. 09 Nov, 2009 1 commit
  7. 04 Nov, 2009 1 commit
  8. 05 Nov, 2009 1 commit
  9. 13 Oct, 2009 1 commit
  10. 09 Oct, 2009 1 commit
    • Joerg Bruehe's avatar
      Fix Bug #47957 · 0f1547a0
      Joerg Bruehe authored
        A build "--without-server" fails if using "--with-ssl" (YaSSL)
      
      The problem was the lack of directory "extra" in a build
      which did not include the server.
      0f1547a0
  11. 06 Oct, 2009 1 commit
  12. 30 Sep, 2009 1 commit
  13. 29 Sep, 2009 1 commit
    • Ingo Struewing's avatar
      WL#4259 - Debug Sync Facility · 21586dfb
      Ingo Struewing authored
      Backport from 6.0 to 5.1.
      Only those sync points are included, which are used in debug_sync.test.
      
        The Debug Sync Facility allows to place synchronization points
        in the code:
        
        open_tables(...)
        
        DEBUG_SYNC(thd, "after_open_tables");
        
        lock_tables(...)
        
        When activated, a sync point can
        
        - Send a signal and/or
        - Wait for a signal
        
        Nomenclature:
        
        - signal:            A value of a global variable that persists
                             until overwritten by a new signal. The global
                             variable can also be seen as a "signal post"
                             or "flag mast". Then the signal is what is
                             attached to the "signal post" or "flag mast".
        
        - send a signal:     Assign the value (the signal) to the global
                             variable ("set a flag") and broadcast a
                             global condition to wake those waiting for
                             a signal.
        
        - wait for a signal: Loop over waiting for the global condition until
                             the global value matches the wait-for signal.
        
        Please find more information in the top comment in debug_sync.cc
        or in the worklog entry.
      21586dfb
  14. 22 Sep, 2009 1 commit
  15. 17 Sep, 2009 2 commits
    • Joerg Bruehe's avatar
      Fix bug#47137 · 275cec80
      Joerg Bruehe authored
          Solaris binary packages should be compiled with '-g0', not '-g'
      
      The main fix for this is done in the build tools,
      but in the sources it affects "configure.in"
      which sets "DEBUG_CXXFLAGS" to be used in all debug builds.
      275cec80
    • Joerg Bruehe's avatar
      Fix bug#46980 · 67bcf54d
      Joerg Bruehe authored
          Option "--without-server" still not working in 5.1
      
      The general approach is to make sure that source files
      which require thread support are only compiled if the build
      really needs thread support,
      which means when the server is built or a thread-safe client
      library.
      
      This required several changes:
      - Make sure the subdirectories "storage/" and "plugin/" are
        only processed if the server is built, not ifclient-only.
      - Make the compilation of some modules which inherently
        require threading depend on thread supportin the build.
      - Separate the handling of threading in "configure.in" from
        that of server issues, threading is also needed in a
        non-server build of a thread-safe client library.
      
      Also, "libdbug" must get built even in a client-only build,
      so "dbug/" must be in the list of client directories.
      
      In addition, calls to thread functions in source files which
      can be built without thread support must use the wrapper
      functions which handle the non-threaded build.
      So the modules "client/mysqlimport.c" and "client/mysqlslap.c"
      must call "my_thread_end()" only via "mysql_thread_end()".
      67bcf54d
  16. 08 Sep, 2009 1 commit
  17. 03 Sep, 2009 1 commit
  18. 12 Aug, 2009 1 commit
  19. 11 Aug, 2009 1 commit
  20. 21 Jul, 2009 1 commit
  21. 13 Jul, 2009 1 commit
  22. 07 Jul, 2009 1 commit
  23. 24 Jun, 2009 1 commit
  24. 22 Jun, 2009 1 commit
  25. 18 Jun, 2009 2 commits
    • Davi Arnaut's avatar
      Bug#42599: error: `pthread_setschedprio' was not declared in this scope · f6ea8b76
      Davi Arnaut authored
      The problem was that a pthread.h header used by gcc did not
      declare the pthread_setscheprio, yet the function is implemented
      by the function is implemented, causing a autoconf check to pass
      and compilation with C++ to fail. The solution is to add a
      autoconf check to ensure that the function is properly declared.
      f6ea8b76
    • Alexey Kopytov's avatar
      Bug #41710: MySQL 5.1.30 crashes on the latest OpenSolaris 10 · 7a512334
      Alexey Kopytov authored
       
      Change the default optimization level for Sun Studio to "-O1". 
      This is a workaround for a Sun Studio bug (see bug #41710 
      comments for details): 
       
      1. Use $GCC instead of $ac_cv_prog_gcc to check for gcc, since 
      the first one is the only documented way to do it. 
       
      2. Use $GXX instead of $ac_cv_prog_cxx_g to check for g++, 
      since the latter is set to "yes" when the C++ compiler accepts 
      "-g" which is the case for both g++ and CC. 
       
      3. When building with Sun Studio, set the default values for 
      CFLAGS/CXXFLAGS to "-O1", since unlike GCC, Sun Studio 
      interprets "-O" as "-xO3" (see the manual pages for cc and CC). 
      7a512334
  26. 16 Jun, 2009 1 commit
  27. 29 May, 2009 1 commit
  28. 14 May, 2009 1 commit
  29. 07 May, 2009 1 commit
  30. 05 May, 2009 1 commit
  31. 30 Apr, 2009 1 commit
  32. 16 Apr, 2009 2 commits
  33. 13 Apr, 2009 1 commit
  34. 30 Mar, 2009 1 commit
  35. 24 Mar, 2009 1 commit
    • Alexey Kopytov's avatar
      Fix for bug #42965: isinf() on 32bit x86 with gcc 4.3 can · 73cb9b6e
      Alexey Kopytov authored
                          produce incorrect results for ROUND() 
      
      Added a workaround and a configure check to test whether 
      isinf() is affected by the GCC bug #39228. 
             
      Since no code in MySQL server is currently affected by that 
      bug, the patch is actually a safeguard for possible future 
      code modifications. No test cases or changelog entries are 
      needed. 
      73cb9b6e
  36. 20 Mar, 2009 1 commit
  37. 19 Mar, 2009 1 commit