1. 19 Nov, 2018 1 commit
    • Max Kellermann's avatar
      check.h: remove obsolete header · ce49d99c
      Max Kellermann authored
      Since we switched from autotools to Meson in commit
      94592c14, we don't need to include
      `config.h` early to properly enable large file support.  Meson passes
      the required macros on the compiler command line instead of defining
      them in `config.h`.
      
      This means we can include `config.h` at any time, whenever we want to
      check its macros, and there are no ordering constraints.
      ce49d99c
  2. 19 Aug, 2018 1 commit
  3. 17 Jan, 2018 1 commit
  4. 03 Jan, 2017 1 commit
  5. 26 Feb, 2016 1 commit
  6. 01 Jan, 2015 1 commit
  7. 01 Mar, 2014 1 commit
  8. 13 Jan, 2014 1 commit
  9. 17 Oct, 2013 3 commits
  10. 21 Jan, 2013 1 commit
    • Denis Krjuchkov's avatar
      FileSystem: extract DirectoryReader, improve the rest · 4ad90e2d
      Denis Krjuchkov authored
      - DirectoryReader is extracted to separate header
      - FileSystem.cxx/FileSystem.hxx/DirectoryReader.hxx moved to fs/ subdir
      - Functions return true on success, instead of 0 (where applicable)
      - ReadLink return result instead of out parameter
      - UnlinkFile is renamed to RemoveFile
      - CheckExists/CheckIsRegular/CheckIsDirectory are renamed
        to PathExists/FileExists/DirectoryExists
      4ad90e2d
  11. 20 Jan, 2013 1 commit
  12. 14 Jan, 2013 1 commit
  13. 04 Jan, 2013 2 commits
  14. 03 Jan, 2013 3 commits
  15. 29 Jan, 2011 1 commit
  16. 01 Jan, 2010 1 commit
  17. 12 Nov, 2009 1 commit
    • Max Kellermann's avatar
      include config.h in all sources · 5b82ffc2
      Max Kellermann authored
      After we've been hit by Large File Support problems several times in
      the past week (which only occur on 32 bit platforms, which I don't
      have), this is yet another attempt to fix the issue.
      5b82ffc2
  18. 28 Jul, 2009 2 commits
  19. 23 Jul, 2009 2 commits
  20. 19 Jul, 2009 1 commit
  21. 04 Jun, 2009 2 commits
  22. 25 Apr, 2009 1 commit
  23. 17 Apr, 2009 1 commit
  24. 01 Apr, 2009 1 commit
    • Max Kellermann's avatar
      client, event_pipe: explicitly ignore the write() result · 8ce2ec7a
      Max Kellermann authored
      On both locations, the result of write() can be ignored safely.  In
      event_pipe_emit_fast(), that can only be "EAGAIN", which means that
      the pipe buffer is full - no further notification required.  In
      client_init(), that would be a fatal connection error, which would be
      caught by the next event.
      
      This patch fixes gcc warnings.
      8ce2ec7a
  25. 30 Mar, 2009 2 commits
  26. 14 Mar, 2009 1 commit
  27. 13 Mar, 2009 1 commit
    • Avuton Olrich's avatar
      all: Update copyright header. · 0aee49bd
      Avuton Olrich authored
      This updates the copyright header to all be the same, which is
      pretty much an update of where to mail request for a copy of the GPL
      and the years of the MPD project. This also puts all committers under
      'The Music Player Project' umbrella. These entries should go
      individually in the AUTHORS file, for consistancy.
      0aee49bd
  28. 28 Feb, 2009 1 commit
  29. 27 Feb, 2009 1 commit
    • Max Kellermann's avatar
      client: removed duplicate "client" string from log · 9dd00dfa
      Max Kellermann authored
      Since we introduced a GLib logging domain, the "client" string appears
      twice in the log lines:
      
       client: client 0: command returned 0
      
      Removed the second one, now it looks like this:
      
       client: [0] command returned 0
      
      Still not quite good, but better than before.
      9dd00dfa
  30. 30 Jan, 2009 1 commit
  31. 25 Jan, 2009 1 commit
    • Max Kellermann's avatar
      client: use the GIOChannel for I/O · 8bc6bca5
      Max Kellermann authored
      GIOChannel is more portable than raw read()/write() calls.  We're
      using GIOChannel anyway, because we need it for plugging the client
      into the GLib main loop.
      
      Configure the GIOChannel to the bare minimum: no character set, no
      buffering.
      8bc6bca5