[ANNOUNCE] vdr-menuorg 0.5.0

Message ID 51459BD8.2070708@flensrocker.de
State New
Headers

Commit Message

L. Hanisch March 17, 2013, 10:32 a.m. UTC
  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@linuxtv.org
> http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
>
  

Comments

Tobias Grimm March 17, 2013, 8:25 p.m. UTC | #1
On 17.03.2013 11:32, Lars Hanisch wrote:

>  Found an error in the Makefile. The LIBS are missing, patch attached.

Thx! Looks like I was in a hurry :-)

Fixed in 0.5.1!

Tobias
  

Patch

--- 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)