Hi, Found an error in the Makefile. The LIBS are missing, patch attached. Regards, Lars. Am 16.03.2013 18:41, schrieb Tobi: > I wanted to completely drop this plugin, but it seems, some folks really > like it. > > Maybe Klaus can add this feature in 2.1+. > > I've basically only updated the Makefile and the patch for VDR 1.7.40. > > As always: Any help is welcome! > > Development site: > http://projects.vdr-developer.org/projects/plg-menuorg > > Downloads: > http://projects.vdr-developer.org/projects/plg-menuorg/files > > Git-Web: > http://projects.vdr-developer.org/git/vdr-plugin-menuorg.git/ > > Anonymous Git-access : > git://projects.vdr-developer.org/vdr-plugin-menuorg.git > > > This is intended to be a community maintained project! Any help and > patches are always welcome! > > Please report bugs, ideas or feature requests to the project site (no > registration required for this!). If you want to contribute patches, new > features or whatever, post an issue or patch to the projects issue tracker > or request to join the project. I would happily add everyone as a project > member, who would like to contribute to the project! > > Tobias > > _______________________________________________ > vdr mailing list > vdr@xxxxxxxxxxx > http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr >
--- a/Makefile +++ b/Makefile @@ -45,6 +45,9 @@ INCLUDES += `pkg-config libxml++-2.6 --cflags` INCLUDES += `pkg-config glibmm-2.4 --cflags` +LIBS += `pkg-config libxml++-2.6 --libs` +LIBS += `pkg-config glibmm-2.4 --libs` + DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"' ### The source files (add further files here): @@ -102,7 +105,7 @@ ### Targets: $(SOFILE): $(OBJS) - $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) -o $@ + $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) $(LIBS) -o $@ install-lib: $(SOFILE) install -D $^ $(DESTDIR)$(LIBDIR)/$^.$(APIVERSION)
_______________________________________________ vdr mailing list vdr@xxxxxxxxxxx http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr