diff options
-rw-r--r-- | Makefile | 7 | ||||
-rw-r--r-- | README | 3 | ||||
-rw-r--r-- | po/.cvsignore | 3 |
3 files changed, 11 insertions, 2 deletions
@@ -1,7 +1,12 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.58 2007/12/23 15:31:51 tadi Exp $ +# $Id: Makefile,v 1.59 2008/01/04 11:34:16 tadi Exp $ + +# Because of shell features used in this Makefile that are provided +# only by bash we set the shell to bash + +SHELL = /bin/bash # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -60,6 +60,9 @@ boost >= 1.32.0 - http://www.boost.org Tntnet >= 1.5.3 - http://www.tntnet.org/download.hms Cxxtools >= 1.4.3 - http://www.tntnet.org/download.hms +The LIVE Makefile makes use of bash features. So you need to have /bin/bash +installed on your system (It needs not to bee the default shell). + Tntnet provides basic webserver functions for live and needs cxxtools. Boost provides some data structures we need. While currently relying on the full blown package we might provide a stripped down version in the future. diff --git a/po/.cvsignore b/po/.cvsignore index bff5c13..be410a4 100644 --- a/po/.cvsignore +++ b/po/.cvsignore @@ -1,2 +1,3 @@ *.mo -live.pot
\ No newline at end of file +live.pot + |