An error occurred fetching the project authors.
  1. 09 Mar, 2009 1 commit
  2. 24 Feb, 2009 1 commit
  3. 23 Feb, 2009 1 commit
    • Alexey Kopytov's avatar
      Fix for bug #15936: "round" differs on Windows to Unix · cebaf077
      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.
      cebaf077
  4. 19 Feb, 2009 1 commit
  5. 11 Feb, 2009 1 commit
  6. 07 Feb, 2009 1 commit
  7. 06 Feb, 2009 1 commit
    • Davi Arnaut's avatar
      Bug#42524: Function pthread_setschedprio() is defined but seems broken on i5/OS PASE · faaa5feb
      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).
      faaa5feb
  8. 29 Jan, 2009 1 commit
  9. 15 Jan, 2009 1 commit
  10. 14 Jan, 2009 2 commits
  11. 12 Jan, 2009 2 commits
    • Joerg Bruehe's avatar
      Set the version: 5.0.72sp1 · f730c8e4
      Joerg Bruehe authored
      f730c8e4
    • Joerg Bruehe's avatar
      Backport of a 5.0.74 fix into 5.0.72sp1: · cafe06c2
      Joerg Bruehe authored
      Remove bashisms from BUILD/compile-dist and configure.in,
      so Bootstrap works on Solaris box;
      - force GNU make in compile-dist;
      - remove unportable "grep -q" from configure.in
      
      Original changeset:
        revision-id: build@mysql.com-20081203041148-icwscut3bk09ds47
        parent: kgeorge@mysql.com-20081202125040-eiu6s7bk6s96s4xh
        author: timothy.smith@sun.com
        committer: MySQL Build Team <build@mysql.com>
        branch nick: mysql-5.0.74-release
        timestamp: Wed 2008-12-03 05:11:48 +0100
      cafe06c2
  12. 03 Dec, 2008 2 commits
  13. 06 Nov, 2008 2 commits
    • kent.boortz@sun.com's avatar
      Back merges from 6.0.8 · a21f8a0e
      kent.boortz@sun.com authored
      - Removed some copy/paste between debug and normal build in RPM spec
      - Removed "mysql_upgrade_shell" from RPM build
      - Removed use of "grep -q" in "configure.in", not portable
      - Improved test to disable ABI check not to accidently run for icc
      
      Other changes
      - Added make file test targets 'test-bt-fast' and 'test-bt-debug-fast'
      - Reenabled "jp" test suite run
      a21f8a0e
    • kent.boortz@sun.com's avatar
      b8b5e156
  14. 24 Oct, 2008 2 commits
  15. 23 Oct, 2008 1 commit
  16. 15 Oct, 2008 1 commit
    • Davi Arnaut's avatar
      Bug#38477: my_pthread_setprio can change dispatch class on Solaris, not just priority · 459b8b3d
      Davi Arnaut authored
      The problem is that the function used by the server to increase
      the thread's priority (pthread_setschedparam) has the unintended
      side-effect of changing the calling thread scheduling policy,
      possibly overwriting a scheduling policy set by a sysadmin.
      
      The solution is to rely on the pthread_setschedprio function, if
      available, as it only changes the scheduling priority and does not
      change the scheduling policy. This function is usually available on
      Solaris and Linux, but it use won't work by default on Linux as the
      the default scheduling policy only accepts a static priority 0 -- this
      is acceptable for now as priority changing on Linux is broken anyway.
      459b8b3d
  17. 11 Oct, 2008 1 commit
  18. 10 Oct, 2008 1 commit
  19. 09 Oct, 2008 1 commit
  20. 06 Oct, 2008 2 commits
  21. 02 Oct, 2008 1 commit
    • Chad MILLER's avatar
      Bug#11122: Server won't always start when cold-booting after a crash · 5317b7de
      Chad MILLER authored
      The grep expression that finds a running "mysqld" program fails if the
      "mysqld_safe" is running with the same PID.
      
      Now, excise "ps" output that has the word " grep" or "mysqld_safe" in 
      it, to be a little more certain that the matched process is not a false 
      positive hit.  This will fail when the path to mysqld contains either
      of those two names, which should be acceptable.
      
      Additionally, some text to search could be truncated if very long.  
      Expand the number of lines "ps" emits.
      5317b7de
  22. 19 Sep, 2008 1 commit
  23. 05 Sep, 2008 1 commit
  24. 28 Aug, 2008 2 commits
  25. 25 Aug, 2008 1 commit
    • Joerg Bruehe's avatar
      Bug#37098 Get rid of "Installed (but unpackaged)" files in the RPM build · ff3d230a
      Joerg Bruehe authored
      Mostly, this affected files (programs, scripts, and manual pages)
      which got built during a RPM build but were not listed in the
      appropriate "%files" section of the "spec" file.
      This is fixed now, they are added.
      
      To make this consistent, this patch also makes the build of "innochecksum"
      (and its inclusion in a tar.gz or other package) depend on whether InnoDB
      is configured in the build.
      
      Also, some tools to create Windows packages are irrelevant in any binary
      Unix package (not the sources !), and so they are deleted before packaging.
      ff3d230a
  26. 13 Aug, 2008 2 commits
  27. 11 Aug, 2008 1 commit
    • Narayanan V's avatar
      WL#4380 · eaeef499
      Narayanan V authored
      Added a comment to the abi_check related
      part of configure.in
      eaeef499
  28. 08 Aug, 2008 1 commit
    • Narayanan V's avatar
      WL#4380 · c5095f77
      Narayanan V authored
      1) Disabled abi_check rule for all compilers except gcc
      2) restored the -dI option to retain the header information.
      c5095f77
  29. 24 Jul, 2008 1 commit
  30. 16 Jul, 2008 1 commit
  31. 14 Jul, 2008 1 commit
  32. 09 Jul, 2008 1 commit