Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] Re: VDR version 1.2.2 pre-release



Ludwig Nussel wrote:
> 
> Klaus Schmidinger wrote:
> > If nobody finds any serious problems with this new version I'd like
> > to officially release it by wednesday.
> 
> Just a minor issue. If you change the Makefile like the following
> patch it would be possible to configure /usr/lib/vdr as plugin
> directory via Make.config as we do it for the SuSE rpm.
> 
> --- vdr-1.2.2.orig/Makefile     2003-08-02 14:27:21.000000000 +0000
> +++ vdr-1.2.2/Makefile  2003-08-03 12:06:50.000000000 +0000
> @@ -20,6 +20,7 @@
>  BINDIR   = /usr/local/bin
> 
>  PLUGINDIR= ./PLUGINS
> +PLUGINLIBDIR=$(PLUGINDIR)/lib
> 
>  VIDEODIR = /video
> 
> @@ -50,7 +51,7 @@
>  DEFINES += -D_GNU_SOURCE
> 
>  DEFINES += -DVIDEODIR=\"$(VIDEODIR)\"
> -DEFINES += -DPLUGINDIR=\"$(PLUGINDIR)/lib\"
> +DEFINES += -DPLUGINDIR=\"$(PLUGINLIBDIR)\"
> 
>  ifdef DEBUG_OSD
>  DEFINES += -DDEBUG_OSD

Please confirm that the complete patch will have to look like this
(note in particular the change in 'plugins-clean'):

--- Makefile    2003/08/02 14:27:21     1.57
+++ Makefile    2003/08/09 11:06:14
@@ -20,6 +20,7 @@
 BINDIR   = /usr/local/bin
 
 PLUGINDIR= ./PLUGINS
+PLUGINLIBDIR= $(PLUGINDIR)/lib
 
 VIDEODIR = /video
 
@@ -50,7 +51,7 @@
 DEFINES += -D_GNU_SOURCE
 
 DEFINES += -DVIDEODIR=\"$(VIDEODIR)\"
-DEFINES += -DPLUGINDIR=\"$(PLUGINDIR)/lib\"
+DEFINES += -DPLUGINDIR=\"$(PLUGINLIBDIR)\"
 
 ifdef DEBUG_OSD
 DEFINES += -DDEBUG_OSD
@@ -115,7 +116,7 @@
 
 plugins-clean:
        @for i in `ls $(PLUGINDIR)/src | grep -v '[^a-z0-9]'`; do $(MAKE) -C "$(PLUGIND
-       @-rm -f $(PLUGINDIR)/lib/*
+       @-rm -f $(PLUGINLIBDIR)/*

 # Install the files:

--- Make.config.template        2003/08/02 14:25:53     1.2
+++ Make.config.template        2003/08/09 11:03:25
@@ -23,4 +23,5 @@
 BINDIR   = /usr/local/bin

 PLUGINDIR= ./PLUGINS
+PLUGINLIBDIR= $(PLUGINDIR)/lib
 VIDEODIR = /video


Klaus


-- 
Info:
To unsubscribe send a mail to ecartis@linuxtv.org with "unsubscribe vdr" as subject.



Home | Main Index | Thread Index