diff options
author | Max Kellermann <max@duempel.org> | 2008-10-15 19:35:04 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-15 19:35:04 +0200 |
commit | e89599eaad23990973efd43f01cb802917a31cff (patch) | |
tree | 29eb594f37b2d6c6de0f912b46e290a9813f4b72 /src/Makefile.am | |
parent | 2a47e90cf5c6585e5b0a8f4d0f2b2a27a891a8d9 (diff) | |
download | mpd-e89599eaad23990973efd43f01cb802917a31cff.tar.gz mpd-e89599eaad23990973efd43f01cb802917a31cff.tar.xz mpd-e89599eaad23990973efd43f01cb802917a31cff.zip |
use GLib
GLib is a nice and portable utility library. We are going to use it
from now on, and eliminate a lot of duplicated code from MPD. Why
invent the wheel again and again?
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 6135c41bb..41bc69f05 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,3 +1,5 @@ +AM_CPPFLAGS = $(GLIB_CFLAGS) + bin_PROGRAMS = mpd SUBDIRS = $(MP4FF_SUBDIR) @@ -196,7 +198,8 @@ mpd_SOURCES = \ mpd_CFLAGS = $(MPD_CFLAGS) -mpd_LDADD = $(MPD_LIBS) $(MP4FF_LIB) +mpd_LDADD = $(MPD_LIBS) $(MP4FF_LIB) \ + $(GLIB_LIBS) DIST_SUBDIRS = mp4ff |