1. 29 Dec, 2011 2 commits
  2. 22 Nov, 2011 1 commit
  3. 22 Oct, 2011 1 commit
  4. 12 Oct, 2011 2 commits
  5. 11 Oct, 2011 2 commits
  6. 09 Oct, 2011 3 commits
  7. 05 Oct, 2011 1 commit
  8. 28 Sep, 2011 1 commit
  9. 27 Sep, 2011 1 commit
    • Fix dev branch under MSVC · 887eaf4d
      In libgit2: Move an enum out of an int bitfield in the HTTP transport.
      
      In the parser: Use int bitfields and change some variable sizes to
      better fit thir use. Variables that count the size of the data chunk
      can only ever be as large as off_t. Warning 4127 can be ignored, as
      nobody takes it seriously anyway.
      
      From Emeric: change some variable declarations to keep MSVC happy.
      
      Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
      Carlos Martín Nieto committed
  10. 22 Sep, 2011 1 commit
  11. 16 Sep, 2011 2 commits
  12. 14 Sep, 2011 1 commit
  13. 09 Sep, 2011 1 commit
  14. 30 Aug, 2011 3 commits
  15. 25 Aug, 2011 1 commit
    • CMakeLists: no need in split debug/release build · 0d5aa7d7
      With GNU toolchain there's no need to split debug/release build.
      
      It's useful to have -O2 in debug envitonment since GCC show more
      warnings in this case. -O2 -g works fine.
      
      For release purpose, debug information can be stripted on later stage.
      
      Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name>
      Kirill A. Shutemov committed
  16. 12 Aug, 2011 1 commit
  17. 09 Aug, 2011 1 commit
  18. 07 Aug, 2011 1 commit
  19. 06 Aug, 2011 1 commit
  20. 17 Jul, 2011 1 commit
  21. 06 Jul, 2011 1 commit
    • Fix network MSYS compilation · 39cdf272
      MSYS/MinGW uses winsock but obviously doesn't set _MSC_VER. Use _WIN32
      to decide whether to use winsock or BSD headers. Also remove these
      headers from src/transport_git.c altogether, as they are not needed.
      
      MSYS is very conservative, so we have to tell it that we don't care
      about versions of Windows lower than WindowsXP. We also need to tell
      CMake to add ws2_32 to the libraries list and we shouldn't add the
      -fPIC option, to MSYS because it complains that it does it anyway.
      
      Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
      Carlos Martín Nieto committed
  22. 03 Jul, 2011 1 commit
  23. 01 Jul, 2011 4 commits
  24. 30 Jun, 2011 1 commit
  25. 26 Jun, 2011 1 commit
  26. 23 Jun, 2011 1 commit
  27. 17 Jun, 2011 2 commits
    • windows: Disable Runtime checks · e01f7f64
      Runtime checks are asserting on the embedded ZLib code because of
      truncation (see zlib/trees.c:218). This is not good or pretty, but I'm
      wary about patching the ZLib code even more.
      
      There are two ways to fix this:
      
      	- Patch the ZLib code, and start storing a diff/patchset on
      	how does our version of ZLib differ from the original one, so we can
      	be more or less on sync when new version of ZLib.
      
      	- Go back to ZLib as an external dependency, which is np for *NIX
      	users but annoying as dicks for Windows users.
      
      THINK HARD
      Vicent Marti committed
  28. 16 Jun, 2011 1 commit