An error occurred fetching the project authors.
  1. 08 Sep, 2009 1 commit
  2. 03 Sep, 2009 1 commit
  3. 12 Aug, 2009 1 commit
  4. 11 Aug, 2009 1 commit
  5. 21 Jul, 2009 1 commit
  6. 13 Jul, 2009 1 commit
  7. 07 Jul, 2009 1 commit
  8. 24 Jun, 2009 1 commit
  9. 22 Jun, 2009 1 commit
  10. 18 Jun, 2009 2 commits
    • Davi Arnaut's avatar
      Bug#42599: error: `pthread_setschedprio' was not declared in this scope · 4de6d1a8
      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.
      
      configure.in:
        Check that the pthread_setschedprio is declared.
      4de6d1a8
    • Alexey Kopytov's avatar
      Bug #41710: MySQL 5.1.30 crashes on the latest OpenSolaris 10 · e544285d
      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). 
      
      configure.in:
        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).
      e544285d
  11. 16 Jun, 2009 1 commit
  12. 29 May, 2009 1 commit
  13. 14 May, 2009 1 commit
  14. 07 May, 2009 1 commit
  15. 05 May, 2009 1 commit
  16. 30 Apr, 2009 1 commit
  17. 16 Apr, 2009 2 commits
  18. 13 Apr, 2009 1 commit
  19. 30 Mar, 2009 1 commit
  20. 24 Mar, 2009 1 commit
    • Alexey Kopytov's avatar
      Fix for bug #42965: isinf() on 32bit x86 with gcc 4.3 can · bbe24f03
      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. 
      
      
      configure.in:
        Added a configure check to test whether isinf() is safe to use
        in C code.
      include/my_global.h:
        Added a workaround for GCC bug #39228.
      bbe24f03
  21. 20 Mar, 2009 1 commit
  22. 19 Mar, 2009 3 commits
    • Joerg Bruehe's avatar
      Set the version number for the SP build. · b7c50e76
      Joerg Bruehe authored
      b7c50e76
    • Joerg Bruehe's avatar
      This is a backport from 5.1.32 into 5.1.31sp1. · f50e3e2e
      Joerg Bruehe authored
      The original fix was done by Davi Arnaut on 2009-02-03
      All comments are copied from the original fix:
      
      
      Bug#42524: Function pthread_setschedprio() is defined but seems broken on i5/OS PASE
      
      The problem is that MySQL use of pthread_setschedprio is not
      supported i5/OS and the default system behavior for unsupported
      calls is to emit a SIGILL signal which causes the server to
      abort.
      
      The solution is to treat the pthread_setschedprio as inexistent
      when compiling binaries to i5/OS. This also does not invalidate
      the fix for bug 38477 as the only supported dispatch class is
      SCHED_OTHER (which is passed to pthread_setschedparam).
      
      configure.in:
        Skip pthread_setschedprio check on i5/OS.
      f50e3e2e
    • Chad MILLER's avatar
      Copy include/config.h to include/my_config.h at configure-time. Also, · 9bdcb6ba
      Chad MILLER authored
      continue to update it at make-time.
      
      One shouldn't need to run "make" on server source to get the stuff we say
      plugins should use.
      9bdcb6ba
  23. 18 Mar, 2009 1 commit
  24. 13 Mar, 2009 1 commit
  25. 09 Mar, 2009 1 commit
  26. 24 Feb, 2009 1 commit
  27. 23 Feb, 2009 1 commit
    • Alexey Kopytov's avatar
      Fix for bug #15936: "round" differs on Windows to Unix · 0e62c9aa
      Alexey Kopytov authored
      Both of our own implementations of rint(3) were inconsistent with the
      most common behavior of rint() on those platforms that have it: round
      to nearest, break ties by rounding to nearest even.
      
      Fixed by leaving just one implementation of rint() in our source tree,
      and changing its behavior to match the most common native
      implementations on other platforms.
      
      configure.in:
        Added checks for fenv.h and fesetround().
      include/config-win.h:
        Removed the incorrect implementation of rint() for Windows.
      include/my_global.h:
        Added an rint() implementation for platforms that do not have it.
      mysql-test/r/func_math.result:
        Added a test case for bug #15936.
      mysql-test/t/func_math.test:
        Added a test case for bug #15936.
      sql/mysqld.cc:
        Explicitly set the FPU rounding mode with fesetround().
      0e62c9aa
  28. 19 Feb, 2009 1 commit
  29. 11 Feb, 2009 1 commit
  30. 07 Feb, 2009 1 commit
  31. 06 Feb, 2009 1 commit
    • Davi Arnaut's avatar
      Bug#42524: Function pthread_setschedprio() is defined but seems broken on i5/OS PASE · ec849b19
      Davi Arnaut authored
      The problem is that MySQL use of pthread_setschedprio is not
      supported by i5/OS and the default system behavior for unsupported
      calls is to emit a SIGILL signal which causes the server to
      abort.
      
      The solution is to treat the pthread_setschedprio as inexistent
      when compiling binaries for i5/OS. This also does not invalidate
      the fix for bug 38477 as the only supported dispatch class is
      SCHED_OTHER (which is passed to pthread_setschedparam).
      
      configure.in:
        Skip pthread_setschedprio check on i5/OS.
      ec849b19
  32. 29 Jan, 2009 1 commit
  33. 15 Jan, 2009 1 commit
  34. 14 Jan, 2009 2 commits
  35. 12 Jan, 2009 1 commit