mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Removed the compile time option VFAT
This commit is contained in:
parent
80f7e64f22
commit
0b1886875a
@ -2363,3 +2363,8 @@ Nan Feng <nfgx@21cn.com>
|
|||||||
Edgar Toernig <froese@gmx.de>
|
Edgar Toernig <froese@gmx.de>
|
||||||
for suggesting to not call FcFini() to avoid problems with older (broken) versions
|
for suggesting to not call FcFini() to avoid problems with older (broken) versions
|
||||||
of fontconfig
|
of fontconfig
|
||||||
|
|
||||||
|
Michael Nork <mnork0@gmx.net>
|
||||||
|
for suggesting to remove the compile time option VFAT to allow users of precompiled
|
||||||
|
binary distributions to have full control over whether or not to use the --vfat
|
||||||
|
option at runtime
|
||||||
|
3
HISTORY
3
HISTORY
@ -5781,6 +5781,9 @@ Video Disk Recorder Revision History
|
|||||||
they can correctly encode the strings.
|
they can correctly encode the strings.
|
||||||
- No longer calling FcFini() to avoid problems with older (broken) versions of
|
- No longer calling FcFini() to avoid problems with older (broken) versions of
|
||||||
fontconfig (suggested by Edgar Toernig).
|
fontconfig (suggested by Edgar Toernig).
|
||||||
|
- Removed the compile time option VFAT to allow users of precompiled binary
|
||||||
|
distributions to have full control over whether or not to use the --vfat option
|
||||||
|
at runtime (suggested by Michael Nork).
|
||||||
|
|
||||||
2008-05-03: Version 1.6.0-2
|
2008-05-03: Version 1.6.0-2
|
||||||
|
|
||||||
|
11
INSTALL
11
INSTALL
@ -1,7 +1,7 @@
|
|||||||
Installation of the Video Disk Recorder
|
Installation of the Video Disk Recorder
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
|
|
||||||
Version 1.6
|
Version 1.7
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
Compiling and running the program:
|
Compiling and running the program:
|
||||||
@ -57,13 +57,8 @@ These options accept an optional path to the remote control device,
|
|||||||
the defaults of which can be set via the RCU_DEVICE and LIRC_DEVICE macros,
|
the defaults of which can be set via the RCU_DEVICE and LIRC_DEVICE macros,
|
||||||
respectively.
|
respectively.
|
||||||
|
|
||||||
If your video directory will be on a VFAT partition, add the compile
|
If your video directory will be on a VFAT partition, you can call VDR with
|
||||||
time switch
|
the command line option '--vfat'.
|
||||||
|
|
||||||
VFAT=1
|
|
||||||
|
|
||||||
to the 'make' command. Alternatively, you can call VDR with the command
|
|
||||||
line option '--vfat'.
|
|
||||||
|
|
||||||
When running, the 'vdr' program writes status information into the
|
When running, the 'vdr' program writes status information into the
|
||||||
system log file, which is usually /var/log/messages (or /var/log/user.log,
|
system log file, which is usually /var/log/messages (or /var/log/user.log,
|
||||||
|
7
Makefile
7
Makefile
@ -4,7 +4,7 @@
|
|||||||
# See the main source file 'vdr.c' for copyright information and
|
# See the main source file 'vdr.c' for copyright information and
|
||||||
# how to reach the author.
|
# how to reach the author.
|
||||||
#
|
#
|
||||||
# $Id: Makefile 2.1 2008/04/19 10:58:56 kls Exp $
|
# $Id: Makefile 2.2 2008/05/03 10:13:43 kls Exp $
|
||||||
|
|
||||||
.DELETE_ON_ERROR:
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
@ -70,11 +70,6 @@ DEFINES += -DLOCDIR=\"$(LOCDIR)\"
|
|||||||
VDRVERSION = $(shell sed -ne '/define VDRVERSION/s/^.*"\(.*\)".*$$/\1/p' config.h)
|
VDRVERSION = $(shell sed -ne '/define VDRVERSION/s/^.*"\(.*\)".*$$/\1/p' config.h)
|
||||||
APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' config.h)
|
APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' config.h)
|
||||||
|
|
||||||
ifdef VFAT
|
|
||||||
# for people who want their video directory on a VFAT partition
|
|
||||||
DEFINES += -DVFAT
|
|
||||||
endif
|
|
||||||
|
|
||||||
all: vdr i18n
|
all: vdr i18n
|
||||||
|
|
||||||
# Implicit rules:
|
# Implicit rules:
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: recording.c 2.1 2008/05/01 15:33:39 kls Exp $
|
* $Id: recording.c 2.2 2008/05/03 10:16:10 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "recording.h"
|
#include "recording.h"
|
||||||
@ -31,8 +31,8 @@
|
|||||||
/* This was the original code, which works fine in a Linux only environment.
|
/* This was the original code, which works fine in a Linux only environment.
|
||||||
Unfortunately, because of Windows and its brain dead file system, we have
|
Unfortunately, because of Windows and its brain dead file system, we have
|
||||||
to use a more complicated approach, in order to allow users who have enabled
|
to use a more complicated approach, in order to allow users who have enabled
|
||||||
the VFAT compile time option to see their recordings even if they forget to
|
the --vfat command line option to see their recordings even if they forget to
|
||||||
enable VFAT when compiling a new version of VDR... Gee, do I hate Windows.
|
enable --vfat when restarting VDR... Gee, do I hate Windows.
|
||||||
(kls 2002-07-27)
|
(kls 2002-07-27)
|
||||||
#define DATAFORMAT "%4d-%02d-%02d.%02d:%02d.%02d.%02d" RECEXT
|
#define DATAFORMAT "%4d-%02d-%02d.%02d:%02d.%02d.%02d" RECEXT
|
||||||
#define NAMEFORMAT "%s/%s/" DATAFORMAT
|
#define NAMEFORMAT "%s/%s/" DATAFORMAT
|
||||||
|
5
vdr.c
5
vdr.c
@ -22,7 +22,7 @@
|
|||||||
*
|
*
|
||||||
* The project's page is at http://www.cadsoft.de/vdr
|
* The project's page is at http://www.cadsoft.de/vdr
|
||||||
*
|
*
|
||||||
* $Id: vdr.c 1.313 2008/03/14 13:22:39 kls Exp $
|
* $Id: vdr.c 2.1 2008/05/03 10:16:41 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
@ -210,9 +210,6 @@ int main(int argc, char *argv[])
|
|||||||
#elif defined(REMOTE_RCU)
|
#elif defined(REMOTE_RCU)
|
||||||
RcuDevice = RCU_DEVICE;
|
RcuDevice = RCU_DEVICE;
|
||||||
#endif
|
#endif
|
||||||
#if defined(VFAT)
|
|
||||||
VfatFileSystem = true;
|
|
||||||
#endif
|
|
||||||
#if defined(VDR_USER)
|
#if defined(VDR_USER)
|
||||||
VdrUser = VDR_USER;
|
VdrUser = VDR_USER;
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user