From e89599eaad23990973efd43f01cb802917a31cff Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 15 Oct 2008 19:35:04 +0200 Subject: 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? --- src/Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src') 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 -- cgit v1.2.3