diff options
author | Max Kellermann <max@duempel.org> | 2013-01-09 23:47:38 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-09 23:47:38 +0100 |
commit | a93caf3cfe461ab7a19b86f456da576e4720fb7b (patch) | |
tree | 16826b0c6a8733c4b55ce360d011fef95068970f /Makefile.am | |
parent | 26ebfc04b0668262976ec4fc38d8780c0937045a (diff) | |
download | mpd-a93caf3cfe461ab7a19b86f456da576e4720fb7b.tar.gz mpd-a93caf3cfe461ab7a19b86f456da576e4720fb7b.tar.xz mpd-a93caf3cfe461ab7a19b86f456da576e4720fb7b.zip |
GlobalEvents: move code to class WakeFD
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 6407f9d82..c1b76fa4d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -9,6 +9,7 @@ bin_PROGRAMS = src/mpd noinst_LIBRARIES = \ libutil.a \ + libevent.a \ libpcm.a \ libtag.a \ libinput.a \ @@ -39,6 +40,7 @@ src_mpd_LDADD = \ $(ENCODER_LIBS) \ $(MIXER_LIBS) \ libutil.a \ + libevent.a \ $(SYSTEMD_DAEMON_LIBS) \ $(GLIB_LIBS) @@ -348,6 +350,11 @@ libutil_a_SOURCES = \ src/util/byte_reverse.c src/util/byte_reverse.h \ src/util/bit_reverse.c src/util/bit_reverse.h +# Event loop library + +libevent_a_SOURCES = \ + src/event/WakeFD.cxx + # PCM library libpcm_a_SOURCES = \ |