summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwr61 <wr61@e10066b5-e1e2-0310-b819-94efdf66514b>2005-03-09 01:45:29 +0000
committerwr61 <wr61@e10066b5-e1e2-0310-b819-94efdf66514b>2005-03-09 01:45:29 +0000
commitfe10a324af015ecf4e0b978893cd4aedabca00c8 (patch)
tree9dfb4fc96c9f4951edf00f40b85bced9cf520463
parent326f24d7d9264f27477814a717ae707bf15021e0 (diff)
downloadvdr-plugin-muggle-fe10a324af015ecf4e0b978893cd4aedabca00c8.tar.gz
vdr-plugin-muggle-fe10a324af015ecf4e0b978893cd4aedabca00c8.tar.bz2
use taglib-config
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/branches/0.1.4-wr@555 e10066b5-e1e2-0310-b819-94efdf66514b
-rw-r--r--muggle-plugin/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/muggle-plugin/Makefile b/muggle-plugin/Makefile
index 956e9bc..394060e 100644
--- a/muggle-plugin/Makefile
+++ b/muggle-plugin/Makefile
@@ -51,7 +51,7 @@ PACKAGE = vdr-$(ARCHIVE)
### Includes and Defines (add further entries here):
INCLUDES += -I$(VDRDIR) -I$(VDRDIR)/include -I$(DVBDIR)/include \
- -I/usr/include/mysql/ -I/usr/include/taglib
+ `mysql_config --cflags` `taglib-config --cflags`
DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
@@ -61,8 +61,8 @@ OBJS = $(PLUGIN).o i18n.o mg_valmap.o mg_mysql.o mg_sync.o mg_order.o mg_content
vdr_decoder_mp3.o vdr_stream.o vdr_decoder.o vdr_player.o \
vdr_setup.o mg_setup.o
-LIBS = -lmad -ltag
-MILIBS = -ltag
+LIBS = -lmad `taglib-config --libs`
+MILIBS = `taglib-config --libs`
ifdef HAVE_SERVER
SQLLIBS = `mysql_config --libs`