1. 30 Sep, 2013 3 commits
    • Alexander Barkov's avatar
      pcre: fixing a test failure in character_sets_dir_basic in this command: · 62260434
      Alexander Barkov authored
      --replace_regex /.prefix.sql.share.charsets[/\]/MYSQL_CHARSETSDIR/
      select @@global.character_sets_dir;
      
      The intention of the '[/\]' part was to replace both slash
      '/' and backslash '\\', so it does not depend on the OS.
      
      The pattern '[/\]' was actually wrong, because ']' is escaped
      and should be considered as a part of the class, instead of
      being a closing bracket for the class. However, due to some bug
      in the old REGEX library it worked fine.
      
      After switching to PCRE, mysqltest correctly complains about unbalaced '[]'.
      The expected correct pattern should be '[/\\]'.
      However, due to some bug in mysqltest, it eats consequetive baskslashes
      in a strange way, so there is no a way to have to consequetive 
      backslashes after unescaping.
      
      Workaround:
      
      using [[:punct:]] as a pattern that matches both slash and backslash,
      which should be fine for this test purposes.
      62260434
    • Alexander Barkov's avatar
      Always include the local copy of pcre.h and pcreposix.h instead of the · 038554ec
      Alexander Barkov authored
      system installed (if any).
      038554ec
    • Alexander Barkov's avatar
      pcre: fixing linking error one some systems: · 61a1c036
      Alexander Barkov authored
      libmysqld.a(pcre_exec.c.o): relocation R_X86_64_32S against
      `_pcre_ucd_stage1' can not be used when making a shared object;
      make[2]: Leaving directory `/mnt/buildbot/build/mariadb-10.0.3'
      recompile with -fPIC
      
      Changing ADD_LIBRARY(pcre) to ADD_CONVENIENCE_LIBRARY(pcre)
      61a1c036
  2. 27 Sep, 2013 4 commits
  3. 26 Sep, 2013 1 commit
  4. 25 Sep, 2013 3 commits
  5. 24 Sep, 2013 1 commit
  6. 23 Sep, 2013 3 commits
  7. 20 Sep, 2013 1 commit
  8. 19 Sep, 2013 6 commits
  9. 18 Sep, 2013 5 commits
  10. 17 Sep, 2013 3 commits
  11. 23 Sep, 2013 2 commits
  12. 20 Sep, 2013 2 commits
  13. 17 Sep, 2013 2 commits
  14. 16 Sep, 2013 4 commits