Skip to content
Snippets Groups Projects
  1. Oct 12, 2015
    • Nick Zavaritsky's avatar
      Fix build (-fno-common) · dd595ff7
      Nick Zavaritsky authored
      A 'tentative definition' in C language is a global variable definition
      missing both a storage class and an initializer, ex: int foo.
      Traditionally it get's translated into a common symbol, allowing for
      multiple definitions in different translation units to coexist.
      
      Normally multiple definitions aren't allowed; unless they are common
      symbols.  In the later case a linker picks one arbitrarily.
      
      -fno-common alters tentative definitions translation, resulting in
      a more strict and conformant semantics, multiple definitions are no
      longer allowed.
      
      This change was motivated by the OSX linker not handling common symbols
      in static libraries
      (https://stackoverflow.com/questions/19398742/os-x-linker-unable-to-find-symbols-from-a-c-file-which-only-contains-variables)
      dd595ff7
  2. Oct 11, 2015
  3. Oct 10, 2015
  4. Oct 09, 2015
    • Konstantin Osipov's avatar
      core: remove object.h · d3067074
      Konstantin Osipov authored
      object.h was an Objective C legacy providing nothing, mostly, and with some
      changes to class hierarchies I have in mind using it will introduce multiple
      inheritance, which I'd rather avoid.
      d3067074
  5. Oct 08, 2015
  6. Oct 07, 2015
  7. Oct 06, 2015
    • Nick Zavaritsky's avatar
      Fix gh-1083 · cd200c65
      Nick Zavaritsky authored
      cd200c65
    • Roman Tsisyk's avatar
      Fix #729: allow multiple sources in box.cfg { replication_source = { } } · cc0aac13
      Roman Tsisyk authored
      Support the following configuration:
      
          box.cfg {
              replication_source = {
                  "uri1";
                  "uri2";
                  "uri3";
                  -- ...
              }
          }
      
      This change is backward-compatible: old syntax is supported as well.
      box.info.replication is not changed and displays state of the first
      (if sort by URI) master.
      
      This patch also adds a simple hack to automatically detect the first
      master (if sorted by URI) during initial cluster bootstrap by
      comparing box.cfg.listen uri with replication_source uris.
      cc0aac13
  8. Oct 04, 2015
  9. Oct 01, 2015
  10. Sep 30, 2015
  11. Sep 29, 2015
  12. Sep 25, 2015
  13. Sep 24, 2015
Loading