summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormrwastl <mrwastl@users.sourceforge.net>2010-05-09 21:34:56 +0200
committermrwastl <mrwastl@users.sourceforge.net>2010-05-09 21:43:15 +0200
commit621ae324977687d33f8662b5986f3d16b9023c3f (patch)
tree133357415b423ae03a4b59978dfb5ae4c57fecf5 /Makefile
parent2707e55f48685452892e40e95b19655880f0e042 (diff)
downloadvdr-plugin-graphlcd-621ae324977687d33f8662b5986f3d16b9023c3f.tar.gz
vdr-plugin-graphlcd-621ae324977687d33f8662b5986f3d16b9023c3f.tar.bz2
plugin should now be working for both non-UTF8 and UTF8 versions of VDR; VDR < 1.5.x: small workaround so that month/day-names are displayed in the configured language
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 137b401..d8484f8 100644
--- a/Makefile
+++ b/Makefile
@@ -67,12 +67,15 @@ endif
### The object files (add further files here):
-OBJS = alias.o common.o display.o i18n.o menu.o plugin.o setup.o skinconfig.o state.o strfct.o
+#OBJS = alias.o common.o display.o i18n.o menu.o plugin.o setup.o skinconfig.o state.o strfct.o
+OBJS = alias.o common.o display.o menu.o plugin.o setup.o skinconfig.o state.o strfct.o
### The main target:
TARGETS = libvdr-$(PLUGIN).so
ifneq ($(shell grep -l 'Phrases' $(VDRDIR)/i18n.c),$(VDRDIR)/i18n.c)
TARGETS += i18n
+else
+OBJS += i18n.o
endif