diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-01-17 01:15:59 +0000 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-01-17 01:15:59 +0000 |
commit | b6ebbd4df6a6a588692bd0e5e1bbd1d920aad3e1 (patch) | |
tree | 2c29c286acbd2fab9d520b9858c1da012b191e82 /Makefile | |
parent | 14601674821ef51d93bff42759ac44d334946045 (diff) | |
download | vdr-plugin-live-b6ebbd4df6a6a588692bd0e5e1bbd1d920aad3e1.tar.gz vdr-plugin-live-b6ebbd4df6a6a588692bd0e5e1bbd1d920aad3e1.tar.bz2 |
- Moved cRecordings locking infrastructure to RecordingsManager.
- Take care to have at any time maximum one instance of RecordingsManager
alive. This is done with a combination of boost::shared_ptr and
boost::weak_ptr. See LiveRecordingsManager() function.
- RecordingsTree now uses RecordingsManager to calculate a MD5 Hash for
each 'real' cRecording item.
- The MD5 Hash is used in the Ajax-Request to start play back of a
recording. (Server side needs implementation of this.)
- Id's are also used in the DOM for the identification of the tooltips.
- New code dependency on openssl libraries (for md5 function).
- Changed style (not yet complete) to have 'action' items also in the
recording description popup.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.27 2007/01/13 18:37:21 lordjaxom Exp $ +# $Id: Makefile,v 1.28 2007/01/17 01:15:59 tadi Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -52,7 +52,7 @@ INCLUDES += -I$(VDRDIR)/include -Ihttpd DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"' export DEFINES -LIBS += httpd/libhttpd.a +LIBS += -lssl httpd/libhttpd.a SUBDIRS = httpd pages css images javascript |