diff -Naur vdr-1.5.8.org/Make.config vdr-1.5.8/Make.config --- vdr-1.5.8.org/Make.config 1969-12-31 19:00:00.000000000 -0500 +++ vdr-1.5.8/Make.config 2007-10-01 09:08:08.246474663 -0400 @@ -0,0 +1,48 @@ +# +# User defined Makefile options for the Video Disk Recorder +# +# Copy this file to 'Make.config' and change the parameters as necessary. +# +# See the main source file 'vdr.c' for copyright information and +# how to reach the author. +# +# $Id: Make.config.template 1.10 2006/06/15 09:15:25 kls Exp $ + +### The C compiler and options: + +CC = gcc +CFLAGS = -march=k8 -O3 -pipe -fomit-frame-pointer + +CXX = g++ +CXXFLAGS = -march=k8 -O3 -pipe -fomit-frame-pointer + +ifdef PLUGIN +CFLAGS += -fPIC +CXXFLAGS += -fPIC +endif + +### The directory environment: + +DVBDIR = /usr/src/v4l-dvb-new/linux +MANDIR = /usr/local/man +BINDIR = /usr/local/bin +# set to ./locale to run VDR from within its source directory: +LOCDIR = /usr/share/vdr/locale + +PLUGINDIR= ./PLUGINS +PLUGINLIBDIR= $(PLUGINDIR)/lib +VIDEODIR = /captive/vdr + +### The remote control: + +LIRC_DEVICE = /dev/lircd +RCU_DEVICE = /dev/ttyS1 + +## Define if you want vdr to not run as root +#VDR_USER = vdr + +### You don't need to touch the following: + +ifdef DVBDIR +INCLUDES += -I$(DVBDIR)/include +endif diff -Naur vdr-1.5.8.org/Makefile vdr-1.5.8/Makefile --- vdr-1.5.8.org/Makefile 2007-08-15 09:47:16.000000000 -0400 +++ vdr-1.5.8/Makefile 2007-10-01 10:30:24.599558426 -0400 @@ -26,7 +26,7 @@ PLUGINDIR= ./PLUGINS PLUGINLIBDIR= $(PLUGINDIR)/lib -VIDEODIR = /video +VIDEODIR = /captive/vdr CONFDIR ?= $(VIDEODIR) DOXYGEN = /usr/bin/doxygen