An error occurred fetching the project authors.
  1. 21 Mar, 2017 1 commit
  2. 27 Feb, 2017 1 commit
  3. 06 Jan, 2017 1 commit
    • Vladislav Vaintroub's avatar
      Windows : use meaningful DEFAULT_MYSQL_HOME - base directory · 82b8741a
      Vladislav Vaintroub authored
      for the default installation.
      
      It is now defined as "C:/Program Files/MariaDB ${MYSQL_BASE_VERSION}"
      which is where installer indeed puts it by default.
      
      It still does not cover every case -32bit installer on 64 bit Windows would put installation
      root under  "C:/Program Files (x86)", but better than the path used
      previously C:/MariaDB${MYSQL_BASE_VERSION}, which was never correct.
      82b8741a
  4. 24 Jul, 2016 1 commit
  5. 24 May, 2016 1 commit
  6. 22 Feb, 2016 1 commit
  7. 07 Jan, 2016 1 commit
    • Ajo Robert's avatar
      Bug#21770366 backport bug#21657078 to 5.5 and 5.6 · 3d1306f7
      Ajo Robert authored
      Problem Statement
      =========
      Fix various issues when building MySQL with Visual Studio 2015.
      
      Fix:
      =======
      - Visual Studio 2015 adds support for timespec. Add check and
        related code to use this and only use our replacement if
        timespec is not defined.
      - Rename lfind/lsearch to my* to avoid redefinition problems.
      - Set default value for TMPDIR to "" on Windows as P_tmpdir
        no longer exists.
      - using VS definition of snprintf if available
      - tzname are now renamed to _tzname.
      3d1306f7
  8. 22 Dec, 2015 1 commit
  9. 20 Nov, 2015 2 commits
  10. 09 Nov, 2015 1 commit
    • Nirbhay Choubey's avatar
      MDEV-9021: MYSQLD SEGFAULTS WHEN BUILT USING --WITH-MAX-INDEXES=128 · 7ec65585
      Nirbhay Choubey authored
      The bitmap implementation defines two template Bitmap classes. One
      optimized for 64-bit (default) wide bitmaps while the other is used for
      all other widths.
      
      In order to optimize the computations, Bitmap<64> class has defined its
      own member functions for bitmap operations, the other one, however,
      relies on mysys' bitmap implementation (mysys/my_bitmap.c).
      
      Issue 1:
      In case of non 64-bit Bitmap class, intersect() wrongly reset the
      received bitmap while initialising a new local bitmap structure
      (bitmap_init() clears the bitmap buffer) thus, the received bitmap was
      getting cleared.
      
      Fixed by initializing the local bitmap structure by using a temporary
      buffer and later copying the received bitmap to the initialised bitmap
      structure.
      
      Issue 2:
      The non 64-bit Bitmap class had the Iterator missing which caused
      compilation failure.
      
      Also added a cmake variable to hold the MAX_INDEXES value when supplied
      from the command prompt. (eg. cmake .. -DMAX_INDEXES=128U). Checks have
      been put in place to trigger build failure if MAX_INDEXES value is
      greater than 128.
      
      Test modifications:
      * Introduced include/have_max_indexes_[64|128].inc to facilitate
      skipping of tests for which the output differs with different
      MAX_INDEXES.
      
      * Introduced include/max_indexes.inc which would get modified by cmake
      to reflect the MAX_INDEXES value used to build the server. This file
      simply sets an mtr variable '$max_indexes' to show the MAX_INDEXES
      value, which will then be consumed by the above introduced include file.
      
      * Some tests (portions), dependent on MAX_INDEXES value, have been moved
      to separate test files.
      7ec65585
  11. 12 Oct, 2015 1 commit
  12. 01 Aug, 2015 1 commit
  13. 16 Jun, 2015 1 commit
  14. 04 May, 2015 3 commits
  15. 27 Apr, 2015 1 commit
  16. 05 Apr, 2015 1 commit
  17. 11 Mar, 2015 1 commit
  18. 11 Feb, 2015 1 commit
  19. 10 Feb, 2015 1 commit
  20. 11 Dec, 2014 1 commit
  21. 28 Nov, 2014 1 commit
  22. 11 Nov, 2014 2 commits
  23. 04 Nov, 2014 2 commits
  24. 13 Oct, 2014 2 commits
    • Jon Olav Hauglid's avatar
      Bug#17633291: SET PROPER COMPILE OPTIONS FOR CLANG · 8b64f825
      Jon Olav Hauglid authored
      Bug#17959689: MAKE GCC AND CLANG GIVE CONSISTENT COMPILATION WARNINGS
      Bug#18313717: ENABLE -WERROR IN MAINTANER MODE WHEN COMPILING WITH CLANG
      Bug#18510941: REMOVE CMAKE WORKAROUNDS FOR OLDER VERSIONS OF OS X/XCODE
        
      Backport from mysql-5.6 to mysql-5.5
      8b64f825
    • Jon Olav Hauglid's avatar
      Bug#17633291: SET PROPER COMPILE OPTIONS FOR CLANG · 57eec7bc
      Jon Olav Hauglid authored
      Bug#17959689: MAKE GCC AND CLANG GIVE CONSISTENT COMPILATION WARNINGS
      Bug#18313717: ENABLE -WERROR IN MAINTANER MODE WHEN COMPILING WITH CLANG
      Bug#18510941: REMOVE CMAKE WORKAROUNDS FOR OLDER VERSIONS OF OS X/XCODE
        
      Backport from mysql-5.6 to mysql-5.5
      57eec7bc
  25. 11 Oct, 2014 2 commits
  26. 09 Oct, 2014 1 commit
  27. 08 Oct, 2014 1 commit
  28. 02 Oct, 2014 1 commit
    • Sergei Golubchik's avatar
      MDEV-5749 Please add a .pc file to MariaDB for easy use via pkg-config · 604b6533
      Sergei Golubchik authored
      1. move cflags/libs cleanup from mysql_config.sh (runtime)
         to for_client.cmake (build time). Include/library paths are
         still calculated at runtime (they depend on the location of mysql_config)
      
      2. Use cleaned-up cflags/libs to generate mariadb.pc
      
      3. remove obsolete @expansions@ from mysql_config (for variables that are
         never set in cmake files)
      604b6533
  29. 01 Oct, 2014 2 commits
  30. 30 Sep, 2014 1 commit
  31. 12 Sep, 2014 1 commit
  32. 11 Sep, 2014 1 commit