diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2007-05-30 18:16:35 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2007-05-30 18:16:35 +0000 |
commit | 693dc378518552cf84fad13b822efb76fd42c943 (patch) | |
tree | 091f0908a989c1efd99a08b951ac2166349ce15e /src/Makefile.am | |
parent | 41d65da4bd4c542370ed794db8a43bf1d866c385 (diff) | |
download | mpd-693dc378518552cf84fad13b822efb76fd42c943.tar.gz mpd-693dc378518552cf84fad13b822efb76fd42c943.tar.xz mpd-693dc378518552cf84fad13b822efb76fd42c943.zip |
Move the timing code from the null plugin to timer.c, so it can be easily
used in other plugins (fifo, shout, etc.).
git-svn-id: https://svn.musicpd.org/mpd/trunk@6397 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index bd1e6877c..b755ec288 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -77,7 +77,8 @@ mpd_headers = \ ioops.h \ zeroconf.h \ locate.h \ - storedPlaylist.h + storedPlaylist.h \ + timer.h mpd_SOURCES = \ @@ -129,7 +130,8 @@ mpd_SOURCES = \ utf8.c \ zeroconf.c \ locate.c \ - storedPlaylist.c + storedPlaylist.c \ + timer.c mpd_CFLAGS = $(MPD_CFLAGS) |