diff --git a/Makefile b/Makefile index 45e3785..4b4ca8d 100644 --- a/Makefile +++ b/Makefile @@ -89,14 +89,14 @@ all: $(SOFILE) i18n %.o: %.c @echo CC $@ - @$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) -o $@ $< + $(Q)$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) -o $@ $< ### Dependencies: MAKEDEP = $(CXX) -MM -MG DEPFILE = .dependencies $(DEPFILE): Makefile - @$(MAKEDEP) $(CXXFLAGS) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@ + $(Q)$(MAKEDEP) $(CXXFLAGS) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@ -include $(DEPFILE) @@ -110,20 +110,20 @@ I18Npot = $(PODIR)/$(PLUGIN).pot %.mo: %.po @echo MO $@ - @msgfmt -c -o $@ $< + $(Q)msgfmt -c -o $@ $< $(I18Npot): $(wildcard *.c) @echo GT $@ - @xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --package-name=vdr-$(PLUGIN) --package-version=$(VERSION) --msgid-bugs-address='' -o $@ `ls $^` + $(Q)xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --package-name=vdr-$(PLUGIN) --package-version=$(VERSION) --msgid-bugs-address='' -o $@ `ls $^` %.po: $(I18Npot) @echo PO $@ - @msgmerge -U --no-wrap --no-location --backup=none -q -N $@ $< + $(Q)msgmerge -U --no-wrap --no-location --backup=none -q -N $@ $< @touch $@ $(I18Nmsgs): $(DESTDIR)$(LOCDIR)/%/LC_MESSAGES/vdr-$(PLUGIN).mo: $(PODIR)/%.mo @echo IN $@ - @install -D -m644 $< $@ + $(Q)install -D -m644 $< $@ .PHONY: i18n i18n: $(I18Nmo) $(I18Npot) @@ -134,12 +134,12 @@ install-i18n: $(I18Nmsgs) $(SOFILE): $(OBJS) @echo LD $@ - @$(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) $(LIBS) -o $@ - @$(STRIP) $@ + $(Q)$(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) $(LIBS) -o $@ + $(Q)$(STRIP) $@ install-lib: $(SOFILE) @echo IN $(DESTDIR)$(LIBDIR)/$^.$(APIVERSION) - @install -D $^ $(DESTDIR)$(LIBDIR)/$^.$(APIVERSION) + $(Q)install -D $^ $(DESTDIR)$(LIBDIR)/$^.$(APIVERSION) install-conf: @mkdir -p $(DESTDIR)$(CFGDIR)/plugins/$(PLUGIN) @@ -160,4 +160,4 @@ clean: .PHONY: cppcheck cppcheck: - @cppcheck --language=c++ --enable=all -v -f $(OBJS:%.o=%.c) + $(Q)cppcheck --language=c++ --enable=all -v -f $(OBJS:%.o=%.c) diff --git a/satip.c b/satip.c index 19acbb0..99cc7eb 100644 --- a/satip.c +++ b/satip.c @@ -19,8 +19,8 @@ #warning "CURL version >= 7.36.0 is recommended" #endif -#if defined(APIVERSNUM) && APIVERSNUM < 20305 -#error "VDR-2.3.5 API version or greater is required!" +#if defined(APIVERSNUM) && APIVERSNUM < 20306 +#error "VDR-2.3.6 API version or greater is required!" #endif #ifndef GITVERSION