1. 15 Jan, 2009 1 commit
  2. 14 Jan, 2009 1 commit
  3. 08 Jan, 2009 1 commit
  4. 30 Dec, 2008 1 commit
  5. 28 Dec, 2008 1 commit
  6. 09 Dec, 2008 1 commit
  7. 10 Nov, 2008 1 commit
    • Max Kellermann's avatar
      flac: enable oggflac with libflac · 505959f7
      Max Kellermann authored
      The "oggflac" plugin was enabled only if HAVE_FLAC_COMMON was
      defined.  HAVE_FLAC_COMMON however is only an automake variable, and
      is never available in decoder_list.c.  Make decoder_list.c depend on
      HAVE_FLAC||HAVE_OGGFLAC instead.
      505959f7
  8. 04 Nov, 2008 3 commits
  9. 03 Nov, 2008 1 commit
  10. 02 Nov, 2008 1 commit
  11. 01 Nov, 2008 3 commits
  12. 30 Oct, 2008 1 commit
  13. 17 Oct, 2008 2 commits
  14. 29 Sep, 2008 1 commit
  15. 26 Aug, 2008 6 commits
  16. 12 Apr, 2008 1 commit
    • Max Kellermann's avatar
      clean up CPP includes · c89b358c
      Max Kellermann authored
      Try to only include headers which are really needed.  We should
      particularly check all "headers including other headers".  The
      long-term goal is to have a manageable, small API for plugins
      (decoders, output) without so many mpd internals cluttering the
      namespace.
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7319 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      c89b358c
  17. 05 Feb, 2008 1 commit
  18. 03 Jan, 2008 1 commit
    • Eric Wong's avatar
      Cleanup #includes of standard system headers and put them in one place · cb8f1af3
      Eric Wong authored
      This will make refactoring features easier, especially now that
      pthreads support and larger refactorings are on the horizon.
      
      Hopefully, this will make porting to other platforms (even
      non-UNIX-like ones for masochists) easier, too.
      
      os_compat.h will house all the #includes for system headers
      considered to be the "core" of MPD.  Headers for optional
      features will be left to individual source files.
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7130 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      cb8f1af3
  19. 24 Jun, 2007 1 commit
  20. 04 Jun, 2007 1 commit
  21. 05 Apr, 2007 1 commit
  22. 14 Jan, 2007 2 commits
  23. 30 Jul, 2006 1 commit
  24. 20 Jul, 2006 1 commit
  25. 17 Jul, 2006 1 commit
    • Eric Wong's avatar
      sparse: ANSI-fy function declarations · a234780a
      Eric Wong authored
      These are just warnings from sparse, but it makes the output
      easier to read.  I ran this through a quick perl script, but
      of course verified the output by looking at the diff and making
      sure the thing still compiles.
      
      here's the quick perl script I wrote to generate this patch:
      ----------- 8< -----------
      use Tie::File;
      defined(my $pid = open my $fh, '-|') or die $!;
      if (!$pid) {
      open STDERR, '>&STDOUT' or die $!;
      exec 'sparse', @ARGV or die $!;
      }
      my $na = 'warning: non-ANSI function declaration of function';
      while (<$fh>) {
      print STDERR $_;
      if (/^(.+?\.[ch]):(\d+):(\d+): $na '(\w+)'/o) {
      my ($f, $l, $pos, $func) = ($1, $2, $3, $4);
      $l--;
      tie my @x, 'Tie::File', $f or die "$!: $f";
      print '-', $x[$l], "\n";
      $x[$l] =~ s/\b($func\s*)\(\s*\)/$1(void)/;
      print '+', $x[$l], "\n";
      untie @x;
      }
      }
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@4378 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      a234780a
  26. 14 Jul, 2006 1 commit
  27. 13 Jul, 2006 1 commit
  28. 16 Mar, 2006 1 commit
  29. 01 Feb, 2005 1 commit